-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.06 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.06 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
{
"name": "simple-mcp-server",
"version": "0.0.12",
"description": "",
"homepage": "https://github.com/UpstreetAI/simple-mcp-server#readme",
"bugs": {
"url": "https://github.com/UpstreetAI/simple-mcp-server/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UpstreetAI/simple-mcp-server.git"
},
"license": "ISC",
"author": "",
"type": "module",
"main": "dist/index.js",
"bin": {
"simple-mcp-server": "./dist/index.js"
},
"scripts": {
"dev": "tsup --watch --onSuccess \"node dist/index.js\"",
"start": "node dist/index.js",
"build": "tsup && chmod +x dist/index.js"
},
"dependencies": {
"@hono/node-server": "^1.13.8",
"commander": "^13.1.0",
"dotenv": "^16.4.7",
"hono": "^4.7.5",
"mkdirp": "^3.0.1",
"pnpm": "^10.6.5",
"pnpm-package-lookup": "^0.0.2",
"rimraf": "^6.0.1",
"supergateway": "^2.3.2",
"tsup": "^8.4.0"
},
"devDependencies": {
"@types/node": "^22.13.11",
"eslint": "^9.23.0",
"turbo": "^2.4.4",
"typescript": "^5.8.2"
}
}