-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.52 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.52 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
{
"name": "agent-reliability-kit",
"version": "0.1.0",
"description": "Verify, harden, and ship AI-agent-assisted codebases in one command.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/aolingge/agent-reliability-kit.git"
},
"bugs": {
"url": "https://github.com/aolingge/agent-reliability-kit/issues"
},
"homepage": "https://aolingge.github.io/agent-reliability-kit/",
"bin": {
"agent-reliability-kit": "./dist/cli.js",
"ark": "./dist/cli.js"
},
"files": [
"dist",
"docs",
"assets",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"lint": "node scripts/lint.mjs",
"check": "npm run lint && npm run typecheck && npm test && npm run build",
"smoke": "node dist/cli.js scan tests/fixtures/clean-node --out .tmp/smoke --format markdown,json,html --min-score 85",
"demo": "node dist/cli.js scan tests/fixtures/conflicting-agent-rules --format text --min-score 0",
"launch:check": "node scripts/launch-check.mjs"
},
"keywords": [
"ai-agent",
"codex",
"claude-code",
"cursor",
"gemini-cli",
"developer-tools",
"security",
"ci",
"mcp",
"mcp-security",
"n8n",
"llm-cost",
"sarif"
],
"author": "Aolinge",
"license": "MIT",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@types/node": "^22.15.3",
"typescript": "^5.8.3",
"vitest": "^3.1.2"
}
}