-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.46 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
{
"name": "mavryn",
"version": "0.5.0",
"description": "The MCP control plane — one server to route them all",
"type": "module",
"bin": {
"mavryn": "./dist/cli/index.js"
},
"main": "./dist/server/mavryn-server.js",
"types": "./dist/server/mavryn-server.d.ts",
"exports": {
".": {
"types": "./dist/server/mavryn-server.d.ts",
"default": "./dist/server/mavryn-server.js"
},
"./config": {
"types": "./dist/config.d.ts",
"default": "./dist/config.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/cli/index.ts",
"start": "node dist/cli/index.js",
"test": "vitest run",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"gateway",
"proxy",
"tool-discovery",
"agent",
"ai",
"routing",
"control-plane"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dnakitare/mavryn.git"
},
"homepage": "https://github.com/dnakitare/mavryn#readme",
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"better-sqlite3": "^11.10.0",
"canonicalize": "^3.0.0",
"commander": "^13.1.0",
"zod": "^3.24.4"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.15.3",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
}
}