-
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) · 938 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 938 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": "agent-bound",
"version": "0.1.0",
"description": "Access control framework for MCP servers — inspired by the AgentBound research paper",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"agent-bound": "dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/",
"clean": "rm -rf dist"
},
"keywords": [
"mcp",
"model-context-protocol",
"access-control",
"security",
"ai-agents",
"sandboxing",
"agentbound"
],
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^22.0.0",
"eslint": "^9.39.2",
"typescript": "^5.7.0",
"typescript-eslint": "^8.54.0",
"vitest": "^3.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}