-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.04 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.04 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
{
"name": "@adp/core",
"version": "0.3.0",
"description": "Agent Decision Protocol — reference implementation",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"adp-mcp": "./dist/mcp/index.js"
},
"files": ["dist", "docs/specs/schemas"],
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"validate:examples": "tsx src/scripts/validate-examples.ts",
"mcp:start": "node dist/mcp/index.js",
"mcp:dev": "tsx src/mcp/index.ts"
},
"dependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"@modelcontextprotocol/sdk": "^1.12.0",
"zod": "^3.24.0"
},
"devDependencies": {
"typescript": "^5.7.0",
"vitest": "^3.0.0",
"@types/node": "^22.0.0",
"tsx": "^4.19.0"
},
"keywords": ["ai-governance", "autonomous-agents", "compliance", "mcp", "mcp-server"],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/OpenAgentGovernance/agent-decision-protocol"
}
}