-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1018 Bytes
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1018 Bytes
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
{
"name": "credential-proxy",
"version": "1.0.0",
"description": "MCP server for secure credential management - agents make authenticated requests without seeing credential values",
"type": "module",
"main": "dist/index.js",
"bin": {
"credential-proxy": "./dist/cli/index.js"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint src",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"keywords": [
"mcp",
"credential",
"proxy",
"security",
"claude"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"commander": "^12.0.0",
"keytar": "^7.9.0",
"minimatch": "^10.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^22.0.0",
"eslint": "^10.0.3",
"tsup": "^8.0.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20.0.0"
}
}