product-spec-mcp 0.3.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +404 -0
- package/dist/index.cjs +28326 -0
- package/package.json +48 -0
package/package.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "product-spec-mcp",
|
|
3
|
+
"version": "0.3.19",
|
|
4
|
+
"description": "MCP Server for product specification - requirement interrogation, architecture decision, UI translation, debug guidance, and acceptance generation",
|
|
5
|
+
"type": "commonjs",
|
|
6
|
+
"main": "dist/index.cjs",
|
|
7
|
+
"bin": {
|
|
8
|
+
"product-spec-mcp": "dist/index.cjs"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist/index.cjs",
|
|
12
|
+
"README.md"
|
|
13
|
+
],
|
|
14
|
+
"engines": {
|
|
15
|
+
"node": ">=18"
|
|
16
|
+
},
|
|
17
|
+
"scripts": {
|
|
18
|
+
"clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
|
|
19
|
+
"build": "npm run clean && esbuild src/index.ts --bundle --platform=node --outfile=dist/index.cjs --format=cjs",
|
|
20
|
+
"typecheck": "tsc --noEmit --skipLibCheck --isolatedModules",
|
|
21
|
+
"test": "npm run build && vitest run",
|
|
22
|
+
"test:watch": "vitest",
|
|
23
|
+
"start": "node dist/index.cjs",
|
|
24
|
+
"dev": "tsx src/index.ts",
|
|
25
|
+
"prepublishOnly": "npm run typecheck && npm test"
|
|
26
|
+
},
|
|
27
|
+
"keywords": [
|
|
28
|
+
"mcp",
|
|
29
|
+
"product-spec",
|
|
30
|
+
"requirement",
|
|
31
|
+
"architecture",
|
|
32
|
+
"debug",
|
|
33
|
+
"acceptance",
|
|
34
|
+
"ai-coding"
|
|
35
|
+
],
|
|
36
|
+
"license": "MIT",
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
39
|
+
"zod": "^3.25.0"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@types/node": "^22.0.0",
|
|
43
|
+
"esbuild": "^0.25.0",
|
|
44
|
+
"tsx": "^4.19.0",
|
|
45
|
+
"typescript": "^5.7.0",
|
|
46
|
+
"vitest": "^3.0.0"
|
|
47
|
+
}
|
|
48
|
+
}
|