-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.39 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.39 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
{
"name": "@simonsbs/keylore",
"version": "1.0.0",
"description": "MCP credential broker and searchable credential catalogue for LLM coding tools.",
"type": "module",
"main": "dist/index.js",
"files": [
"bin",
"dist",
"data/auth-clients.json",
"data/catalog.json",
"data/policies.json",
"migrations",
".env.example",
"README.md",
"LICENSE",
"NOTICE"
],
"bin": {
"keylore": "dist/cli.js",
"keylore-http": "bin/keylore-http.js",
"keylore-stdio": "bin/keylore-stdio.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Simonsbs/keylore.git"
},
"keywords": [
"mcp",
"model-context-protocol",
"credentials",
"secrets",
"broker",
"catalogue"
],
"author": "Simon",
"license": "Apache-2.0",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"prepack": "npm run build",
"typecheck": "tsc --noEmit",
"test:contracts": "node --test --import tsx src/test/contract.test.ts",
"test:conformance": "node --test --import tsx src/test/conformance.test.ts",
"test:hardening": "node --test --import tsx src/test/hardening.test.ts",
"db:up": "docker compose up -d postgres",
"db:down": "docker compose down",
"dev:http": "tsx src/index.ts --transport http",
"quickstart": "bash ./scripts/quickstart.sh",
"dev:stdio": "tsx src/index.ts --transport stdio",
"dev:cli": "tsx src/cli.ts",
"ops:container-smoke": "bash ./scripts/container-smoke.sh",
"ops:fresh-user-env": "sudo bash ./scripts/fresh-user-env.sh",
"ops:fresh-user-env:cleanup": "sudo bash ./scripts/fresh-user-env-cleanup.sh",
"ops:helm-validate": "bash ./scripts/helm-validate.sh",
"ops:release-verify": "bash ./scripts/release-verify.sh",
"ops:restore-drill": "bash ./scripts/restore-drill.sh",
"start:http": "node dist/index.js --transport http",
"start:stdio": "node dist/index.js --transport stdio",
"start:cli": "node dist/cli.js",
"test": "node --test --import tsx src/test/**/*.test.ts"
},
"dependencies": {
"@electric-sql/pglite": "^0.3.16",
"@modelcontextprotocol/sdk": "^1.27.1",
"pg": "^8.20.0",
"pg-mem": "^3.0.14",
"pino": "^10.3.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/pg": "^8.18.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}