-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.26 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@my-mcp-hub/node-mcp-server",
"version": "0.0.3",
"description": "MCP Server Template For Node.js",
"author": "zhensherlock",
"type": "module",
"license": "MIT",
"bin": {
"node-mcp-server": "./build/index.js"
},
"files": [
"build",
"LICENSE",
"README.md"
],
"main": "build/index.js",
"scripts": {
"prepare": "husky",
"lint": "npx eslint \"src/**/*.{ts,js}\"",
"build": "tsc --noEmit && cross-env NODE_ENV=production node scripts/build.js",
"dev": "npm run dev:stdio",
"dev:stdio": "cross-env NODE_ENV=local concurrently \"tsc --noEmit --watch\" \"node scripts/dev.js\"",
"dev:web": "cross-env NODE_ENV=local TRANSPORT=web concurrently \"tsc --noEmit --watch\" \"node scripts/dev.js\"",
"test": "vitest run",
"report": "c8 report --reporter=lcov --reporter=html",
"coverage": "rimraf coverage && npm run test",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 -n changelog-option.js"
},
"dependencies": {
"@fastify/cors": "^11.1.0",
"@modelcontextprotocol/sdk": "^1.24.2",
"dotenv": "^17.2.3",
"fastify": "^5.6.2",
"nanoid": "^5.1.6",
"yargs": "^17.7.2",
"zod": "^4.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.7",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@modelcontextprotocol/inspector": "^0.18.0",
"@types/express": "^5.0.6",
"@types/yargs": "^17.0.35",
"@vitest/coverage-v8": "^4.0.15",
"c8": "^10.1.3",
"compare-func": "^2.0.0",
"concurrently": "^9.2.1",
"conventional-changelog-angular": "^8.1.0",
"conventional-changelog-cli": "^5.0.0",
"cross-env": "^10.1.0",
"esbuild": "^0.27.0",
"eslint": "^9.39.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^17.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"rimraf": "^6.1.2",
"tree-kill": "^1.2.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1",
"vitest": "^4.0.15"
},
"repository": {
"type": "git",
"url": "git+https://github.com/my-mcp-hub/node-mcp-server.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}