-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 2.88 KB
/
package.json
File metadata and controls
49 lines (49 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
{
"name": "charter",
"private": true,
"description": "Charter Governance Kit — repo-adoptable governance checks for any project",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "bash -lc \"pnpm exec tsc --build tsconfig.build.json\"",
"dev": "bash -lc \"pnpm exec tsc --build --watch tsconfig.build.json\"",
"clean": "node -e \"const fs=require('fs');const path=require('path');for(const e of fs.readdirSync('packages',{withFileTypes:true}).filter(x=>x.isDirectory())){const dir=path.join('packages',e.name);fs.rmSync(path.join(dir,'dist'),{recursive:true,force:true});fs.rmSync(path.join(dir,'tsconfig.tsbuildinfo'),{force:true});}\"",
"typecheck": "bash -lc \"pnpm exec tsc --noEmit -p tsconfig.json\"",
"test": "bash -lc \"pnpm exec vitest run\"",
"test:watch": "bash -lc \"pnpm exec vitest\"",
"test:coverage": "bash -lc \"pnpm exec vitest run --coverage\"",
"scorecard:generate": "node scripts/generate-scorecard.mjs",
"scorecard:validate": "node scripts/validate-scorecard.mjs",
"docs:sync": "node scripts/docs-sync.mjs --write && node scripts/papers-lint.mjs",
"docs:check": "node scripts/docs-sync.mjs --check && node scripts/papers-lint.mjs",
"docs:oss:sync": "node scripts/docs-sync.mjs --write --config .docsync.oss.json",
"docs:oss:check": "node scripts/docs-sync.mjs --check --config .docsync.oss.json",
"docs:oss:auto": "node scripts/docs-oss-auto-sync.mjs --config .docsync.oss.json",
"docs:oss:auto:dry-run": "node scripts/docs-oss-auto-sync.mjs --config .docsync.oss.json --dry-run --no-push",
"verify:adf": "bash -lc \"node packages/cli/dist/bin.js doctor --adf-only --ci --format json && node packages/cli/dist/bin.js adf evidence --auto-measure --ci --format json\"",
"charter:detect": "charter setup --detect-only --format json",
"charter:setup": "charter setup --preset fullstack --ci github --yes",
"harness": "node --import tsx harness/runner.ts",
"harness:scenario": "node --import tsx harness/runner.ts --scenario",
"harness:archetype": "node --import tsx harness/runner.ts --archetype",
"harness:ollama": "node --import tsx harness/runner.ts --ollama",
"harness:ollama:worker": "node --import tsx harness/runner.ts --ollama --archetype worker",
"harness:ollama:backend": "node --import tsx harness/runner.ts --ollama --archetype backend",
"harness:real": "node --import tsx harness/runner.ts --real",
"harness:real:aegis": "node --import tsx harness/runner.ts --real --archetype aegis",
"harness:real:bizops": "node --import tsx harness/runner.ts --real --archetype bizops"
},
"packageManager": "pnpm@9.15.9",
"devDependencies": {
"@stackbilt/cli": "workspace:^",
"@types/node": "^25.5.0",
"tsx": "^4.21.0",
"typescript": "~5.8.2",
"vitest": "^4.0.18",
"zod": "^3.24.1"
},
"version": "0.9.3",
"license": "Apache-2.0",
"author": "Stackbilt LLC"
}