forked from xy200303/spec-coding-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.74 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
{
"name": "@dev_xiaoyun/spec-coding-mcp",
"version": "0.2.17",
"description": "MCP service for spec coding: generate, review, implement, and archive lightweight specs.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/xy200303/spec-coding-mcp.git"
},
"bugs": {
"url": "https://github.com/xy200303/spec-coding-mcp/issues"
},
"homepage": "https://spec.xyun.dev",
"keywords": [
"mcp",
"spec-coding",
"specification",
"codex",
"mcp"
],
"files": [
"dist",
"README.md",
"LICENSE",
"package.json"
],
"bin": {
"specc": "dist/index.js"
},
"scripts": {
"prebuild": "node scripts/clean-dist.mjs",
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"unit": "bun test/unit.ts",
"smoke": "bun test/smoke.ts",
"release:check": "bun scripts/release-check.mjs",
"release:manual": "node scripts/release-manual.mjs",
"verify": "npm run build && npm run unit && npm run smoke && npm run release:check",
"test": "npm run verify",
"docs:dev": "vitepress dev docs --host 127.0.0.1",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs --host 127.0.0.1",
"prepack": "npm run verify"
},
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@clack/prompts": "^1.5.1",
"@modelcontextprotocol/sdk": "^1.29.0",
"skills": "^1.5.12",
"zod": "^4.1.13"
},
"devDependencies": {
"@theojs/lumen": "^6.4.7",
"@types/node": "^22.19.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitepress": "^1.6.4"
}
}