-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.87 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
{
"name": "@constructive-io/blocks-root",
"version": "0.0.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.28.0",
"engines": {
"node": ">=24.0.0",
"pnpm": ">=10.0.0"
},
"scripts": {
"build": "lerna run build",
"build:packages": "pnpm --filter @constructive-io/ui build && pnpm --filter @constructive-io/schema-builder build",
"build:registry": "pnpm --filter @constructive-io/registry build",
"build:pages": "pnpm build:packages && pnpm build:registry && pnpm --filter blocks build:pages && pnpm pages:artifact",
"build:storybook": "pnpm --filter @constructive-io/ui build-sb",
"dev": "pnpm --filter blocks dev",
"test": "lerna run test",
"lint:types": "lerna run lint:types",
"lint:scripts": "tsc --noEmit -p tsconfig.scripts.json",
"check": "pnpm check:runtime && pnpm check:public && pnpm lint:scripts && pnpm --filter blocks check:flows && pnpm --filter blocks check:selections && pnpm lint:types && pnpm test",
"check:full": "pnpm check && pnpm build:storybook && pnpm build:registry && pnpm check:registry-contract && pnpm --filter @constructive-io/registry smoke:install && pnpm pack:check",
"check:runtime": "tsx scripts/check-runtime-contract.ts",
"check:public": "tsx scripts/check-public-surface.ts",
"check:registry-contract": "tsx scripts/check-registry-contract.ts",
"pack:local": "tsx scripts/pack-local.ts",
"pack:check": "pnpm pack:local && tsx scripts/check-packed-packages.ts",
"pages:artifact": "tsx scripts/build-pages-artifact.ts",
"local:registry": "tsx scripts/serve-local-registry.ts",
"release:version": "lerna version --conventional-commits --no-push",
"clean": "lerna run clean --if-present",
"bootstrap": "pnpm install"
},
"devDependencies": {
"@types/node": "^24.10.1",
"lerna": "^8.2.4",
"tsx": "4.23.1",
"typescript": "^5.9.3"
}
}