-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 894 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 894 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
{
"name": "@gitnullxyz/openclaude",
"version": "0.2.0",
"description": "Autonomous AI agent runtime for per-repository intelligence — secret scanning, CVE detection, smart contract auditing",
"type": "module",
"scripts": {
"scan": "node dist/scan.js",
"start": "node dist/index.js",
"build": "tsc --build",
"typecheck": "tsc --noEmit"
},
"keywords": [
"ai",
"agent",
"security",
"code-scanning",
"gitnull",
"web3",
"autonomous"
],
"license": "MIT",
"author": "GitNull Protocol Labs <dev@gitnull.xyz>",
"homepage": "https://gitnull.xyz/agents",
"repository": {
"type": "git",
"url": "git+https://github.com/gitnull-dev/openclaude.git"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"osv-scanner": "^1.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
}
}