-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.21 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.21 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
{
"name": "specpilot-mcp-server",
"version": "0.5.0",
"private": true,
"type": "module",
"license": "MIT",
"bin": {
"specpilot-mcp-server": "./dist/index.js"
},
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc -p tsconfig.json && chmod +x dist/index.js",
"start": "npx specpilot-mcp-server",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest --watch",
"test:build": "pnpm build && pnpm test:run",
"test:full": "pnpm build && pnpm test:run && echo '✅ All tests and build passed!'"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.5",
"fast-glob": "^3.3.2",
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.0",
"pnpm": "^10.15.1",
"yaml": "^2.5.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.3.1",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"tsx": "^4.19.2",
"typescript": "^5.5.4",
"vitest": "^3.2.4"
}
}