forked from anton-abyzov/specweave
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
136 lines (136 loc) · 4.98 KB
/
Copy pathpackage.json
File metadata and controls
136 lines (136 loc) · 4.98 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "specweave",
"version": "1.0.293",
"description": "Spec-driven development framework for AI coding agents. First-class support for Claude Code — compatible with any LLM-powered coding tool. Living documentation, autonomous execution, quality gates, and multilingual support (9 languages).",
"type": "module",
"main": "dist/index.js",
"bin": {
"specweave": "./bin/specweave.js"
},
"scripts": {
"preinstall": "node scripts/check-node-version.js || exit 0",
"preuninstall": "node scripts/preuninstall.cjs",
"version": "node scripts/build/auto-changelog.js && git add CHANGELOG.md",
"postversion": "echo '✅ Version bumped with CHANGELOG entry'",
"clean": "rm -rf dist/",
"build": "tsc && npm run build:dashboard && npm run copy:locales && npm run copy:plugins && npm run copy:hook-deps && npm run copy:adapters",
"build:dashboard": "npx vite build --config src/dashboard/client/vite.config.ts",
"copy:adapters": "node scripts/build/copy-adapters.js",
"rebuild": "npm run clean && npm run build",
"copy:locales": "node scripts/build/copy-locales.js",
"copy:plugins": "node scripts/build/copy-plugin-js.js",
"copy:hook-deps": "node scripts/build/copy-hook-dependencies.js",
"dev": "tsc --watch",
"prepublishOnly": "npm run rebuild",
"test:unit": "vitest run tests/unit --coverage",
"test:unit:fast": "vitest run --config vitest.unit.config.ts",
"test:integration": "vitest run tests/integration --coverage",
"test:lifecycle": "npm run test:unit && npm run test:integration",
"test:e2e:lifecycle": "vitest run tests/e2e/crash-recovery.e2e.ts",
"test:e2e:cli": "vitest run --config vitest.e2e.config.ts",
"test:performance": "ts-node tests/performance/session-registry-bench.ts && bash tests/performance/heartbeat-overhead-bench.sh && ts-node tests/performance/compare-to-baseline.ts",
"test:smoke": "bash tests/smoke/smoke-test.sh",
"test:e2e": "vitest run tests/e2e",
"test:e2e:watch": "vitest tests/e2e",
"test:e2e:debug": "DEBUG=* vitest run tests/e2e",
"test:e2e:dashboard": "npx playwright test --config playwright.config.ts",
"test:all": "npm run test:unit && npm run test:integration && npm run test:e2e && npm run test:e2e:lifecycle",
"test:coverage": "vitest run --coverage",
"test": "npm run test:smoke",
"benchmark": "ts-node tests/performance/run-all-benchmarks.ts",
"validate:plugins": "node scripts/validation/validate-plugin-manifests.cjs",
"validate:platforms": "node scripts/validation/validate-platforms.js",
"metrics:dora": "node dist/src/metrics/dora-calculator.js",
"generate:diagrams": "bash scripts/generation/generate-diagram-svgs.sh",
"release:patch": "bash scripts/build/bump-version.sh patch",
"release:minor": "bash scripts/build/bump-version.sh minor",
"release:major": "bash scripts/build/bump-version.sh major",
"release": "bash scripts/build/bump-version.sh",
"setup:hooks": "bash scripts/hooks/install-git-hooks.sh"
},
"keywords": [
"specweave",
"spec-driven-development",
"living-documentation",
"ai-development",
"claude-code",
"test-driven-development",
"bdd",
"tdd",
"i18n",
"multilingual",
"autonomous-agents",
"project-management",
"dora-metrics",
"incremental-development"
],
"author": "SpecWeave Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/anton-abyzov/specweave.git"
},
"bugs": {
"url": "https://github.com/anton-abyzov/specweave/issues"
},
"homepage": "https://spec-weave.com",
"engines": {
"node": ">=20.12.0"
},
"files": [
"dist",
"bin",
"scripts/check-node-version.js",
"scripts/preuninstall.cjs",
".claude-plugin",
"plugins",
"src/templates",
"README.md",
"CLAUDE.md",
"INSTALL.md",
"LICENSE"
],
"dependencies": {
"@anthropic-ai/sdk": "^0.74.0",
"@inquirer/prompts": "^8.1.0",
"@octokit/rest": "^22.0.1",
"@types/handlebars": "^4.0.40",
"axios": "^1.13.4",
"chalk": "^5.3.0",
"commander": "^14.0.2",
"fs-extra": "^11.3.3",
"glob": "^13.0.0",
"gray-matter": "^4.0.3",
"handlebars": "^4.7.8",
"js-yaml": "^4.1.0",
"open": "^11.0.0",
"ora": "^9.0.0",
"uuid": "^13.0.0",
"yaml": "^2.3.4",
"zod": "^4.1.13"
},
"devDependencies": {
"@mermaid-js/mermaid-cli": "^11.12.0",
"@playwright/test": "^1.58.2",
"@tailwindcss/vite": "^4.1.18",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.0.3",
"@types/open": "^6.1.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "^4.0.17",
"@vitest/ui": "^4.0.17",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"dotenv": "^17.2.3",
"memfs": "^4.51.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-router-dom": "^7.13.0",
"tailwindcss": "^4.1.18",
"typescript": "^5.3.0",
"vite": "^7.3.1",
"vitest": "^4.0.17"
}
}