forked from nexu-io/open-design
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.7 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "open-design",
"version": "0.3.0",
"private": true,
"packageManager": "pnpm@10.33.2",
"type": "module",
"description": "Local-first design product: detects your installed code-agent CLI, runs design skills + design systems, streams artifacts into a sandboxed preview.",
"license": "Apache-2.0",
"bin": {
"od": "./apps/daemon/dist/cli.js"
},
"scripts": {
"postinstall": "node ./scripts/postinstall.mjs",
"tools-dev": "pnpm exec tools-dev",
"tools-pack": "pnpm exec tools-pack",
"build": "pnpm --filter @open-design/web build",
"check:residual-js": "node --experimental-strip-types scripts/check-residual-js.ts",
"sync:community-pets": "node --experimental-strip-types scripts/sync-community-pets.ts",
"bake:community-pets": "node --experimental-strip-types scripts/bake-community-pets.ts",
"seed:test-projects": "node --experimental-strip-types scripts/seed-test-projects.ts",
"test:e2e:live": "pnpm --filter @open-design/e2e test:e2e:live",
"test": "pnpm -r --workspace-concurrency=1 --if-present run test",
"test:ui:clean": "pnpm --filter @open-design/e2e test:ui:clean",
"test:ui": "pnpm --filter @open-design/e2e test:ui",
"test:ui:headed": "pnpm --filter @open-design/e2e test:ui:headed",
"typecheck": "pnpm -r --workspace-concurrency=1 --if-present run typecheck && pnpm --filter @open-design/daemon build && pnpm check:residual-js"
},
"devDependencies": {
"@open-design/tools-dev": "workspace:0.3.0",
"@open-design/tools-pack": "workspace:0.3.0"
},
"engines": {
"node": "~24",
"pnpm": ">=10.33.2 <11"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"electron",
"esbuild"
]
}
}