-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.26 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.26 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
{
"name": "@community/mcp-template",
"version": "0.1.0",
"description": "Template MCP server following the MCP Manifesto principles.",
"type": "module",
"main": "dist/server.js",
"bin": {
"mcp-template-server": "dist/server.js"
},
"files": [
"dist",
"README.md",
"CONTRIBUTING.md",
"CAPABILITIES.md",
"LICENSE",
"server.json",
"SKILL.md",
"agents",
"CLAUDE.md",
".github"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc --noEmit -p tsconfig.json",
"lint": "eslint .",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --runInBand",
"check:file-size": "node scripts/check-file-size.js",
"verify": "npm run typecheck && npm run lint && npm run test && npm run check:file-size"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.10",
"@typescript-eslint/eslint-plugin": "^8.25.0",
"@typescript-eslint/parser": "^8.25.0",
"eslint": "^9.21.0",
"globals": "^15.15.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.6",
"typescript": "^5.8.2"
},
"engines": {
"node": ">=20.0.0"
}
}