forked from Pimzino/spec-workflow-mcp
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.53 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.53 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
{
"name": "@lbruton/specflow",
"version": "3.6.3",
"description": "MCP server for spec-driven development workflow with real-time web dashboard",
"main": "dist/index.js",
"type": "module",
"bin": {
"specflow": "dist/index.js"
},
"files": [
"dist/**/*",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"build": "npm run validate:i18n && npm run clean && tsc -p tsconfig.build.json && chmod +x dist/index.js && npm run build:dashboard",
"copy-static": "node scripts/copy-static.cjs",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"dev:dashboard": "vite --config src/dashboard_frontend/vite.config.ts",
"build:dashboard": "vite build --config src/dashboard_frontend/vite.config.ts && npm run copy-static",
"clean": "rimraf dist",
"validate:i18n": "node scripts/validate-i18n.js",
"sync:plugin-version": "node scripts/sync-plugin-version.js",
"check:plugin-version": "node scripts/sync-plugin-version.js --check",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"test:e2e": "playwright test",
"test:e2e:worktree": "playwright test -c playwright.worktree.config.ts",
"test:e2e:ui": "playwright test --ui",
"test:generate-approvals": "node scripts/generate-test-approvals.cjs",
"prepare": "husky || true",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepublishOnly": "npm run build",
"validate:mdx": "tsx scripts/validate-mdx.ts"
},
"keywords": [
"mcp",
"model-context-protocol",
"spec-workflow",
"ai-development",
"claude",
"cursor",
"development-workflow",
"project-management"
],
"author": "",
"license": "GPL-3.0",
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@fastify/cors": "^11.2.0",
"@fastify/rate-limit": "^10.3.0",
"@fastify/static": "^9.0.0",
"@fastify/websocket": "^11.2.0",
"@heroicons/react": "^2.2.0",
"@mdx-js/mdx": "^3.1.1",
"@mdxeditor/editor": "^3.50.0",
"@modelcontextprotocol/sdk": "^1.24.3",
"@tailwindcss/vite": "^4.1.13",
"@toon-format/toon": "^0.8.0",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"chokidar": "^3.5.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"diff": "^5.2.0",
"fastify": "^5.8.4",
"highlight.js": "^11.9.0",
"howler": "^2.2.4",
"i18next": "^25.5.2",
"i18next-browser-languagedetector": "^8.2.0",
"markdown-it": "^14.1.0",
"mermaid": "^10.9.1",
"node-cron": "^4.2.1",
"open": "^8.4.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.7.3",
"react-router-dom": "^6.26.2",
"react-text-annotate-blend": "^1.2.0",
"simple-git": "^3.28.0",
"tailwind-merge": "^3.3.1",
"toml": "^3.0.0",
"ws": "^8.18.0",
"zod": "^3.25.0"
},
"devDependencies": {
"@playwright/test": "^1.58.0",
"@tailwindcss/typography": "^0.5.16",
"@types/diff": "^5.2.3",
"@types/node": "^22.18.1",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/ws": "^8.5.13",
"@vitejs/plugin-react": "^4.3.3",
"@vitest/coverage-v8": "^4.0.15",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"rimraf": "^6.0.1",
"tailwindcss": "^4.1.13",
"tsx": "^4.7.0",
"typescript": "^5.7.2",
"vite": "^7.2.7",
"vitest": "^4.0.15"
},
"lint-staged": {
"*.{ts,tsx,js,cjs,mjs,json,css,html}": "prettier --write"
}
}