-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 788 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "image-context-cascade-monorepo",
"private": true,
"type": "module",
"workspaces": [
"packages/core",
"packages/conformance",
"packages/adapters/pi",
"packages/cli"
],
"scripts": {
"build": "bun run build:core && bun run build:conformance && bun run build:cli",
"build:core": "tsc -p packages/core/tsconfig.build.json && node scripts/fix-dist-imports.mjs packages/core/dist",
"build:conformance": "tsc -p packages/conformance/tsconfig.build.json && node scripts/fix-dist-imports.mjs packages/conformance/dist",
"build:cli": "node scripts/build-cli.mjs",
"test": "bun test",
"typecheck": "bun run build && tsc --noEmit -p tsconfig.json"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"typescript": "^5.9.2"
}
}