-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.04 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.04 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
{
"name": "prd-spec-generator",
"version": "0.1.0",
"private": true,
"description": "Production-grade PRD generator with closed-loop reliability calibration, multi-judge verification against externally-grounded oracles, and mechanically-sealed falsifier protocols. 17 MCP tools, 583 tests, full Phase 4 audit lineage.",
"scripts": {
"build": "pnpm -r --workspace-concurrency=1 build",
"bundle": "esbuild packages/mcp-server/dist/index.js --bundle --platform=node --target=node20 --format=esm --external:better-sqlite3 --outfile=mcp-server/index.js && chmod +x mcp-server/index.js",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"clean": "pnpm -r clean && rm -f mcp-server/index.js",
"verify": "pnpm install --frozen-lockfile && pnpm build && pnpm bundle && pnpm test"
},
"engines": {
"node": ">=20.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3"
]
},
"devDependencies": {
"esbuild": "^0.28.0",
"typescript": "^5.9.3",
"vitest": "^4.1.4"
}
}