-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 1.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
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@benwu95/prospec",
"version": "0.5.2",
"description": "Progressive Spec-Driven Development CLI tool",
"type": "module",
"packageManager": "pnpm@11.3.0",
"bin": {
"prospec": "dist/cli/index.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"src/templates/"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"lint": "eslint src/ tests/",
"typecheck": "tsc -p tsconfig.typecheck.json",
"prepare": "tsc",
"measure:tokens": "npx tsx scripts/measure-tokens.ts",
"counts": "npx tsx scripts/sync-counts.ts",
"counts:check": "npx tsx scripts/sync-counts.ts --check",
"bundle": "npx tsx scripts/bundle.ts"
},
"keywords": [
"progressive-disclosure",
"spec-driven-development",
"sdd",
"agentic-coding",
"ai-coding-assistant",
"developer-tools",
"cli",
"ai-knowledge",
"brownfield",
"ai-agents",
"llm",
"mcp",
"mcp-server",
"claude",
"claude-code",
"codex",
"github-copilot"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=22.13.0",
"pnpm": ">=11"
},
"dependencies": {
"@commander-js/extra-typings": "^14.0.0",
"@inquirer/prompts": "^8.2.0",
"@modelcontextprotocol/sdk": "1.29.0",
"commander": "^14.0.3",
"fast-glob": "^3.3.3",
"fast-xml-parser": "^5.9.0",
"handlebars": "^4.7.8",
"picocolors": "^1.1.1",
"smol-toml": "^1.6.1",
"yaml": "^2.8.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^25.2.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.39.2",
"memfs": "^4.56.10",
"tsx": "^4.22.4",
"typescript": "5.9",
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.18",
"esbuild": "^0.28.1"
}
}