-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.88 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.88 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "buildplane-workspace",
"private": true,
"version": "0.1.0",
"packageManager": "pnpm@10.0.0",
"workspaces": [
"apps/*",
"packages/*"
],
"engines": {
"node": "24.13.1"
},
"scripts": {
"build": "pnpm -C apps/web build && tsc --build",
"buildplane": "node --conditions=source --import tsx ./apps/cli/src/index.ts",
"gsd2": "node --conditions=source --import tsx ./apps/cli/src/gsd2-index.ts",
"native:build": "cargo build --manifest-path native/Cargo.toml -p bp-cli",
"test": "pnpm native:build && vitest --run --exclude=test/workflow/published-bootstrap-stage.test.ts --exclude=test/workflow/published-bootstrap-install.test.ts && pnpm test:published-bootstrap",
"test:published-bootstrap": "vitest --run --no-file-parallelism test/workflow/published-bootstrap-stage.test.ts test/workflow/published-bootstrap-install.test.ts",
"test:watch": "vitest",
"typecheck": "pnpm exec tsc --build --pretty false",
"lint": "biome check .",
"format": "biome format --write .",
"ledger:gen": "bash ./scripts/ledger/generate-schema.sh",
"ledger:gen-fixtures": "bash ./scripts/ledger/gen-fixtures.sh",
"check": "pnpm lint && pnpm typecheck && pnpm test && pnpm build",
"prepare": "husky",
"changeset": "changeset",
"changeset:status": "changeset status --verbose",
"stage:published-bootstrap": "node ./scripts/published-bootstrap/stage-package.mjs",
"stage:trust-spine:protected-host": "node ./scripts/trust-spine/stage-protected-host.mjs --bin-dir ./native/target/release",
"verify:trust-spine:release-evidence": "node ./scripts/trust-spine/verify-release-evidence.mjs",
"trust-spine:release-preflight": "node --import tsx ./eval/trust-spine-release-preflight-cli.ts",
"release:publish": "pnpm verify:trust-spine:release-evidence && pnpm build && pnpm native:build && node ./scripts/published-bootstrap/publish-npm.mjs",
"verify:published-bootstrap": "node ./scripts/published-bootstrap/verify-positive.mjs",
"auto-merge:eligibility": "node ./scripts/ci/pr-auto-merge-eligibility.mjs",
"auto-merge:opt-in": "node ./scripts/ci/pr-auto-merge-opt-in.mjs",
"eval": "node --import tsx ./eval/runner.ts",
"eval:trust-spine:gate": "node --import tsx ./eval/trust-spine-release-gate-cli.ts"
},
"devDependencies": {
"@biomejs/biome": "^2.5.7",
"@changesets/cli": "^2.31.1",
"@commitlint/cli": "^21.2.2",
"@commitlint/config-conventional": "^21.2.2",
"@types/node": "^26.2.0",
"glob": "^13.0.6",
"husky": "^9.1.7",
"tsx": "^4.23.12",
"typescript": "^7.0.2",
"vite": "8.0.16",
"vitest": "^4.1.5"
},
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome"
],
"overrides": {
"picomatch@<2.3.2": ">=2.3.2",
"picomatch@>=4.0.0 <4.0.4": ">=4.0.4",
"fast-uri@<=3.1.1": "3.1.2",
"brace-expansion@>=4.0.0 <5.0.6": "5.0.6",
"ws@>=8.0.0 <8.21.0": "8.21.0",
"js-yaml@<3.15.0": "3.15.0",
"js-yaml@>=4.0.0 <4.2.0": "4.2.0",
"vite": "8.0.16"
}
}
}