-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.58 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 2.58 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@usex/audit",
"version": "1.6.0",
"description": "A Cloudflare-style 8-stage vulnerability-discovery agent, driven by your Claude subscription through the Claude Agent SDK. Bun + TypeScript.",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"prompts",
"schemas",
"config"
],
"bin": {
"audit": "dist/cli.js"
},
"keywords": [
"ai",
"cli",
"security-agent",
"security",
"agent",
"vulnerability",
"claude",
"claude-agent-sdk",
"bun"
],
"author": {
"name": "Ali Torki",
"url": "https://github.com/ali-master",
"email": "ali_4286@live.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ali-master/audit.git"
},
"bugs": {
"url": "https://github.com/ali-master/audit/issues"
},
"homepage": "https://github.com/ali-master/audit#readme",
"logo": "https://raw.githubusercontent.com/ali-master/audit/main/assets/logo.svg",
"engines": {
"bun": ">=1.3.0"
},
"scripts": {
"build": "bunup && chmod +x dist/cli.js",
"dev": "bunup --watch",
"prepack": "bunup && chmod +x dist/cli.js",
"auth-check": "bun run src/cli.ts auth-check",
"test": "bun test",
"release": "release-it",
"test:types": "tsc --noEmit",
"format": "prettier --write \"**/*.ts\"",
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.ts\" --fix"
},
"devDependencies": {
"@antfu/eslint-config": "^9.0.0",
"@resvg/resvg-js": "^2.6.2",
"@types/bun": "latest",
"@types/node": "^25.9.3",
"@types/update-notifier": "^6.0.8",
"eslint": "^10.5.0",
"eslint-plugin-format": "^2.0.1",
"prettier": "^3.8.4",
"release-it": "^20.2.0",
"update-notifier": "^7.3.1"
},
"peerDependencies": {
"typescript": "^5.7.3"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.3.181",
"ajv": "^8.20.0",
"bunup": "^0.16.32",
"chalk": "^5.6.2",
"commander": "^15.0.0",
"dotenv": "^17.4.2",
"yaml": "^2.9.0"
},
"packageManager": "bun@1.3.14",
"changelog": {
"labels": {
"feature": "Features",
"bug": "Bug fixes",
"enhancement": "Enhancements",
"docs": "Docs",
"dependencies": "Dependencies",
"type: code style": "Code style tweaks",
"status: blocked": "Breaking changes",
"breaking change": "Breaking changes"
}
},
"publishConfig": {
"access": "public"
}
}