-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 832 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 832 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
{
"name": "agent-action-guard",
"version": "0.1.0",
"description": "JavaScript runtime for screening AI agent actions as safe, harmful, or unethical.",
"type": "module",
"main": "./src/index.js",
"scripts": {
"format": "prettier --write .",
"lint": "eslint .",
"quality": "npm run format && npm run lint",
"test": "node --test",
"test:all-versions": "node scripts/test-all-versions.js",
"test:runtimes": "node --test test/cross-runtime.test.js"
},
"exports": {
".": "./src/index.js"
},
"files": [
"src",
"README.md"
],
"engines": {
"node": ">=18"
},
"keywords": [
"ai-agents",
"ai-safety",
"mcp",
"tool-calling"
],
"license": "CC-BY-4.0",
"devDependencies": {
"eslint": "^9.0.0",
"prettier": "^3.0.0"
},
"dependencies": {
"onnxruntime-node": "^1.22.0",
"openai": "^5.0.1"
}
}