-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 905 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 905 Bytes
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
{
"name": "spec-check",
"version": "0.1.3",
"description": "MCP server for spec-driven development methodology compliance checking",
"type": "module",
"main": "dist/index.js",
"bin": {
"spec-check": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"server": "node dist/cli.js server",
"dev": "tsx src/index.ts",
"dashboard": "node dist/dashboard.js",
"dashboard:dev": "tsx src/dashboard.ts",
"start": "node dist/cli.js",
"test": "vitest run"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"@typescript-eslint/parser": "^8.0.0",
"@typescript-eslint/typescript-estree": "^8.0.0",
"duckdb": "^1.4.4"
},
"devDependencies": {
"@stryker-mutator/core": "^9.6.0",
"@stryker-mutator/typescript-checker": "^9.6.0",
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^4.1.2"
}
}