-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.46 KB
/
package.json
File metadata and controls
49 lines (49 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
{
"name": "gatelet",
"version": "0.2.4",
"description": "Self-hosted MCP permission proxy for AI agents",
"type": "module",
"workspaces": [
"dashboard",
"website"
],
"files": [
"dist/"
],
"bin": {
"gatelet": "./dist/cli.js"
},
"scripts": {
"dev": "npm run dev:dashboard & npm run dev:api",
"dev:api": "tsx src/index.ts",
"dev:dashboard": "npm run --workspace=dashboard dev",
"build": "tsup src/index.ts src/cli.ts --clean --format esm --dts --external better-sqlite3 --external sodium-native && npm run build:dashboard",
"build:dashboard": "npm run --workspace=dashboard build",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"doctor": "tsx src/cli.ts doctor",
"doctor:fix": "tsx src/cli.ts doctor --fix",
"docker:build": "npm run build && docker build -t gatelet .",
"docker:dev": "npm run docker:build && docker tag gatelet ghcr.io/hannesill/gatelet:latest && GATELET_LOCAL=1 bash install.sh"
},
"dependencies": {
"@hono/node-server": "^1.19.9",
"@modelcontextprotocol/sdk": "^1.12.1",
"better-sqlite3": "^11.8.2",
"googleapis": "^148.0.0",
"hono": "^4.7.4",
"nanoid": "^5.1.2",
"sodium-native": "^4.3.2",
"yaml": "^2.7.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.13.4",
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"typescript": "^5.7.3",
"vitest": "^3.0.6"
}
}