-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.17 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.17 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
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@det-acp/core",
"version": "0.4.2",
"description": "Agent Governance Gateway — bounded, auditable, session-aware control for AI agents with MCP proxy, shell proxy, and HTTP API",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./policy": {
"types": "./dist/policy/loader.d.ts",
"import": "./dist/policy/loader.js"
},
"./server": {
"types": "./dist/server/server.d.ts",
"import": "./dist/server/server.js"
}
},
"bin": {
"det-acp": "dist/cli/index.js"
},
"files": [
"dist/",
"schemas/",
"examples/",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"start:server": "node dist/server/server.js",
"generate:schema": "node dist/schemas/generate.js",
"prepare": "npm run build",
"prepublishOnly": "npm run build && npm run test"
},
"keywords": [
"agent",
"governance",
"safety",
"control-protocol",
"audit",
"policy",
"mcp",
"cursor",
"claude-code",
"gateway",
"session",
"ai-agent",
"model-context-protocol",
"deterministic"
],
"author": "det-acp",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/elliot35/deterministic-agent-control-protocol.git"
},
"homepage": "https://github.com/elliot35/deterministic-agent-control-protocol#readme",
"bugs": {
"url": "https://github.com/elliot35/deterministic-agent-control-protocol/issues"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"commander": "^14.0.3",
"fastify": "^5.7.4",
"js-yaml": "^4.1.1",
"minimatch": "^10.1.2",
"nanoid": "^3.3.11",
"pino": "^10.3.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.2.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18",
"zod-to-json-schema": "^3.25.1"
}
}