-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 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
60
61
{
"name": "@pcmstack/mcp",
"version": "0.5.0",
"description": "MCP server for querying and editing Pro Cycling Manager game databases",
"type": "module",
"bin": {
"pcmstack": "dist/index.js"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"format": "biome format --write .",
"inspector": "npx @modelcontextprotocol/inspector node dist/index.js",
"lint": "biome lint --write .",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"prepare": "husky",
"pack": "mcpb pack . dist/pcmstack.mcpb",
"start": "node ./dist/index.js",
"start:dev": "tsup --watch --onSuccess \"node ./dist/index.js\""
},
"devDependencies": {
"@biomejs/biome": "2.5.9",
"@types/node": "^22.20.0",
"@types/sql.js": "^1.4.11",
"@vitest/coverage-v8": "^4.1.5",
"husky": "^9.1.7",
"lint-staged": "^17.3.0",
"tsup": "^8.0.0",
"typescript": "^5.9.3",
"vitest": "^4.1.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PCMStack/mcp.git"
},
"author": "PCMStack",
"license": "MIT",
"bugs": {
"url": "https://github.com/PCMStack/mcp/issues"
},
"homepage": "https://pcmstack.com",
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"@anthropic-ai/mcpb": "^2.1.2",
"@modelcontextprotocol/sdk": "^1.29.0",
"cdb-converter": "^0.4.0",
"sql-query-identifier": "^3.1.1",
"sql.js": "^1.14.1",
"zod": "^4.4.3"
}
}