-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.4 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.4 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
{
"name": "n2-ark",
"version": "3.0.6",
"description": "AI Firewall — Constitutional rule engine with 3-layer enforcement. YAML setup, natural language rules, immutable core. If the AI can't solve the logic, it can't do anything.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"n2-ark": "dist/server.js",
"n2-ark-cli": "dist/cli.js"
},
"scripts": {
"build": "tsc && node scripts/copy-mappings.js",
"dev": "tsc --watch",
"start": "node dist/server.js",
"test": "node test.js",
"seal": "node dist/cli.js seal",
"init": "node dist/cli.js init"
},
"keywords": [
"ai-safety",
"ai-firewall",
"mcp",
"guardrails",
"agent-safety",
"state-machine",
"constitutional-ai",
"rule-engine",
"llm-safety",
"ai-security",
"immutable-rules"
],
"author": "Hyunsu Choi <choihyunsus@gmail.com>",
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "git+https://github.com/choihyunsus/n2-ark.git"
},
"homepage": "https://nton2.com",
"bugs": {
"url": "https://github.com/choihyunsus/n2-ark/issues"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/",
"rules/",
"examples/",
"ark.setup.yaml",
"README.md",
"README.ko.md",
"LICENSE",
"LICENSE-APACHE"
],
"devDependencies": {
"typescript": "^5.7.0",
"@types/node": "^22.0.0"
}
}