-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 811 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 811 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
{
"name": "spec-driven-development-template",
"private": true,
"version": "1.4.1",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces",
"typecheck": "npm run typecheck --workspaces",
"test": "npm run mcp:test",
"mcp:start": "npm --workspace @sdd/sdd-mcp run start",
"mcp:http:start": "npm --workspace @sdd/sdd-mcp run start:http",
"mcp:build": "npm --workspace @sdd/sdd-mcp run build",
"mcp:test": "npm run build && node scripts/test-mcp-integration.mjs",
"mcp:smoke": "npm run build && node scripts/smoke-test-mcp.mjs",
"mcp:http:smoke": "npm run build && node scripts/smoke-test-mcp-http.mjs"
},
"devDependencies": {
"@types/node": "^24.0.0",
"tsx": "^4.20.0",
"typescript": "^5.8.0"
}
}