-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.6 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.6 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
76
77
78
79
80
81
82
83
84
85
86
{
"name": "mcp-gateway",
"version": "0.8.0",
"description": "MCP Gateway/Proxy with OIDC authentication, access control (RBAC/ABAC/ReBAC), and monitoring",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mcp-gateway": "./bin/mcp-gateway"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"dev:web": "cd web && npm run dev",
"build": "tsc && npm run build:assets && npm run build:web",
"build:assets": "cp src/storage/migrations/*.sql dist/storage/migrations/ && mkdir -p dist/data/catalog && cp data/catalog/*.json dist/data/catalog/",
"build:web": "cd web && npm run build && rm -rf ../dist/dashboard && mkdir -p ../dist/dashboard && cp -r dist/. ../dist/dashboard/",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"cli": "tsx src/cli/index.ts"
},
"keywords": [
"mcp",
"gateway",
"proxy",
"oidc",
"access-control",
"rbac",
"abac"
],
"author": "Cuong Tuan Nguyen <cuongdev@users.noreply.github.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cuongdev/mcp-gateway.git"
},
"homepage": "https://github.com/cuongdev/mcp-gateway#readme",
"bugs": {
"url": "https://github.com/cuongdev/mcp-gateway/issues"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.1",
"@hono/node-server": "^1.13.0",
"@libsql/client": "^0.14.0",
"@node-rs/argon2": "^2.0.2",
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/auto-instrumentations-node": "^0.50.2",
"@opentelemetry/exporter-trace-otlp-http": "^0.55.0",
"@opentelemetry/sdk-node": "^0.55.0",
"@opentelemetry/sdk-trace-base": "^1.30.1",
"@scure/base": "^1.2.6",
"ajv": "^8.20.0",
"casbin": "^5.30.0",
"commander": "^12.1.0",
"hono": "^4.6.0",
"ioredis": "^5.10.1",
"jose": "^5.9.0",
"pino": "^9.5.0",
"pino-pretty": "^11.3.0",
"postgres": "^3.4.9",
"prom-client": "^15.1.0",
"socks-proxy-agent": "^8.0.5",
"uuid": "^10.0.0",
"uuidv7": "^1.2.1",
"zod": "^3.23.0"
},
"devDependencies": {
"@testcontainers/postgresql": "^10.28.0",
"@types/ioredis-mock": "^8.2.7",
"@types/node": "^22.19.19",
"@types/uuid": "^10.0.0",
"@vitest/coverage-v8": "^2.1.9",
"ioredis-mock": "^8.13.1",
"safe-regex": "^2.1.1",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^2.1.0"
}
}