-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.19 KB
/
package.json
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
{
"name": "@kiwamizamurai/mcp-kibela-server",
"version": "1.0.0",
"description": "MCP server for Kibela API integration",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"bin": {
"mcp-kibela-server": "dist/src/index.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/kiwamizamurai/mcp-kibela-server"
},
"bugs": {
"url": "https://github.com/kiwamizamurai/mcp-kibela-server/issues"
},
"homepage": "https://github.com/kiwamizamurai/mcp-kibela-server#readme",
"scripts": {
"build": "tsc && shx chmod +x dist/src/*.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"start": "node dist/src/index.js",
"start:sse": "node dist/src/sse.js",
"lint": "biome check .",
"lint:fix": "biome check --apply ."
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.0.1",
"cors": "^2.8.5",
"express": "^4.18.2",
"graphql": "^16.10.0",
"graphql-request": "^6.1.0"
},
"devDependencies": {
"@biomejs/biome": "1.5.3",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20",
"shx": "^0.3.4",
"typescript": "^5.6.2"
}
}