-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.14 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@openagentlock/cli",
"version": "0.1.18",
"type": "module",
"license": "SEE LICENSE IN LICENSE",
"description": "OpenAgentLock CLI — a firewall for AI coding agents. Detects local agent harnesses (Claude Code, Codex CLI, Cursor, OpenCode, Cline, Gemini CLI, Continue, Copilot), gates risky tool calls via a Go control plane, anchors decisions in a Rust Merkle ledger.",
"keywords": [
"ai",
"agent",
"firewall",
"security",
"claude-code",
"codex",
"cursor",
"mcp",
"policy",
"audit",
"merkle",
"supply-chain"
],
"homepage": "https://openagentlock.github.io/OpenAgentLock",
"repository": {
"type": "git",
"url": "git+https://github.com/openagentlock/OpenAgentLock.git",
"directory": "cli"
},
"bugs": {
"url": "https://github.com/openagentlock/OpenAgentLock/issues"
},
"author": "OpenAgentLock contributors",
"bin": {
"agentlock": "./src/index.ts"
},
"files": [
"src/",
"agentlock",
"tsconfig.json",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "bun run src/index.ts",
"detect": "bun run src/index.ts detect",
"install-into": "bun run src/index.ts install",
"typecheck": "tsc --noEmit",
"build": "bun build src/index.ts --target=bun --outdir=dist",
"prepublishOnly": "test -x ./agentlock && npm pack --dry-run --json | node -e \"const m=JSON.parse(require('fs').readFileSync(0,'utf8'));if(!m[0].files.some(f=>f.path==='agentlock'))throw new Error('agentlock wrapper missing from tarball — see 0.1.12 regression');\""
},
"dependencies": {
"@noble/ed25519": "^3.1.0",
"@noble/hashes": "^2.2.0",
"@opentui/core": "0.1.107",
"@opentui/react": "0.1.107",
"commander": "^12.1.0",
"qrcode-terminal": "^0.12.0",
"react": "^19.2.5",
"yaml": "^2.8.4"
},
"overrides": {
"@opentui/core": "0.1.107"
},
"resolutions": {
"@opentui/core": "0.1.107"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^22.0.0",
"@types/react": "^19.2.14",
"typescript": "^5.6.0"
},
"engines": {
"bun": ">=1.1.0"
},
"publishConfig": {
"access": "public"
}
}