-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.82 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.82 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
{
"name": "keygate",
"version": "1.0.0",
"description": "Zero-trust credential gateway for AI Agents — proxy-only, passwords never enter LLM context",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"kg": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"cli": "node dist/cli.js",
"mcp": "node dist/mcp/server.js",
"native": "node dist/native-service.js",
"web": "node dist/web/server.js",
"proxy": "node dist/proxy/server.js",
"test": "vitest run",
"test:watch": "vitest",
"test:unit": "vitest run tests/crypto.test.ts tests/store.test.ts tests/vault.test.ts tests/session.test.ts",
"test:integration": "vitest run tests/native-service.test.ts tests/mcp-extension.test.ts tests/native-host.test.ts",
"test:mcp": "vitest run tests/mcp-server.test.ts",
"test:proxy": "vitest run tests/proxy-server.test.ts",
"test:all": "vitest run",
"lint": "eslint src/**/*.ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build && npm test",
"install:service": "node scripts/install-service-wrapper.js",
"uninstall:service": "node scripts/uninstall-service-wrapper.js",
"upgrade": "bash scripts/upgrade.sh"
},
"keywords": [
"keygate",
"credential",
"proxy",
"mcp",
"ai-agent",
"security"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"better-sqlite3": "^11.0.0",
"commander": "^12.0.0",
"keytar": "^7.9.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/keytar": "^4.4.0",
"@types/node": "^20.0.0",
"typescript": "^5.4.0",
"vitest": "^1.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/**/*",
"scripts/**/*"
]
}