-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.2 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
{
"name": "gatehouse",
"version": "0.2.1",
"description": "Self-hosted agent secrets vault for AI coding agents and LLM tools. Proxy mode keeps API keys, database credentials, and SSH certificates out of LLM context windows. MCP-native, single Docker container, open-source HashiCorp Vault alternative.",
"type": "module",
"scripts": {
"dev": "bun run --watch src/index.ts",
"start": "bun run src/index.ts",
"test": "bun test",
"build": "bun build src/index.ts --outdir dist --target bun",
"db:migrate": "bun run src/db/migrate.ts",
"site:dev": "cd site && bun run dev",
"site:build": "cd site && bun run sync-docs && bun run build && bun run publish"
},
"dependencies": {
"hono": "^4.7.0",
"ioredis": "^5.10.1",
"jose": "^6.0.0",
"mongodb": "^7.1.1",
"mysql2": "^3.20.0",
"oauth4webapi": "^3.8.6",
"pg": "^8.20.0",
"qrcode": "^1.5.4",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1",
"uuid": "^14.0.0",
"yaml": "^2.7.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/ioredis": "^5.0.0",
"@types/pg": "^8.20.0",
"@types/qrcode": "^1.5.6",
"@types/uuid": "^10.0.0",
"playwright": "^1.59.1"
}
}