-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.22 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.22 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
{
"name": "@teampitch/mcpx",
"version": "0.3.2",
"description": "Self-hosted MCP Code Mode gateway — aggregate multiple MCP servers behind 2 tools with V8 isolate execution",
"keywords": [
"claude",
"code-mode",
"gateway",
"grafana",
"mcp"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/arek-e/mcpx"
},
"bin": {
"mcpx": "./src/index.ts"
},
"files": [
"src/",
"mcpx.example.json",
"LICENSE"
],
"type": "module",
"main": "src/index.ts",
"scripts": {
"dev": "bun run --watch src/index.ts",
"build": "bun build src/index.ts --target=bun --minify --outfile=dist/server.js",
"start": "bun dist/server.js",
"test": "bun test",
"lint": "oxlint src/",
"format": "biome format --write src/",
"format:check": "biome format src/",
"check": "bun run lint && bun run format:check",
"precommit": "bun run check && bun test",
"prepublishOnly": "bun run check && bun test"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"acorn": "^8.16.0",
"hono": "^4.7.10",
"jose": "^6.2.2",
"neverthrow": "^8.2.0",
"secure-exec": "^0.2.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@types/bun": "^1.2.14",
"oxlint": "^1.58.0"
}
}