-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.5 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
{
"name": "charon",
"version": "0.2.0",
"description": "Runtime policy enforcement for autonomous agents",
"license": "MIT",
"author": "CharonAI-code",
"type": "commonjs",
"main": "dist/src/cli/index.js",
"types": "dist/src/cli/index.d.ts",
"exports": {
".": "./dist/src/cli/index.js",
"./action": "./dist/src/action/index.js",
"./core/policy": "./dist/src/core/policy/index.js",
"./inspection": "./dist/src/inspection/index.js",
"./mcp": "./dist/src/mcp/index.js",
"./roles": "./dist/src/roles/index.js",
"./trusted-process": "./dist/src/trusted-process/index.js"
},
"bin": {
"charon": "bin/charon.js"
},
"files": [
"bin",
"dist",
"skills",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"prepare": "npm run build",
"smoke": "node bin/charon.js --help",
"test": "npm run build && node --test tests/*.test.js"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.2",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CharonAI-code/charon.git"
},
"bugs": {
"url": "https://github.com/CharonAI-code/charon/issues"
},
"homepage": "https://github.com/CharonAI-code/charon#readme",
"keywords": [
"agents",
"gate",
"agent-security",
"policy",
"receipts",
"security"
]
}