-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 964 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 964 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
34
35
36
37
38
39
{
"name": "mcp-server-spec-driven-development",
"version": "0.1.1",
"mcpName": "io.github.formulahendry/spec-driven-development",
"author": "Jun Han",
"description": "Spec-Driven Development MCP Server",
"type": "module",
"bin": {
"mcp-server-spec-driven-development": "dist/index.js"
},
"scripts": {
"build": "tsc && shx chmod +x dist/index.js",
"watch": "tsc --watch",
"start": "node ./dist/index.js",
"start:streamableHttp": "node dist/streamableHttp.js"
},
"files": [
"dist"
],
"keywords": [
"mcp"
],
"repository": {
"type": "git",
"url": "https://github.com/formulahendry/mcp-server-spec-driven-development.git"
},
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.0",
"express": "^5.1.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/express": "^5.0.1",
"@types/node": "^22.13.10",
"shx": "^0.3.4",
"typescript": "^5.8.2"
}
}