-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.44 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.44 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
{
"name": "speclinter-mcp",
"version": "0.1.0",
"description": "Turn specs into structured tasks with built-in quality gates - MCP server for AI-powered development",
"keywords": [
"mcp",
"model-context-protocol",
"ai",
"specification",
"task-management",
"quality-gates",
"gherkin",
"typescript",
"development-tools"
],
"homepage": "https://gitmcp.io/orangebread/speclinter-mcp",
"repository": {
"type": "git",
"url": "https://github.com/orangebread/speclinter-mcp.git"
},
"bugs": {
"url": "https://github.com/orangebread/speclinter-mcp/issues"
},
"type": "module",
"main": "dist/index.js",
"bin": {
"speclinter": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx watch src/server.ts",
"test": "vitest run",
"test:watch": "vitest",
"start": "node dist/server.js",
"postbuild": "chmod +x dist/cli.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.2",
"better-sqlite3": "^12.2.0",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"handlebars": "^4.7.8",
"ora": "^7.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.8",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.55.0",
"tsx": "^4.6.2",
"typescript": "^5.3.0",
"vitest": "^1.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}