-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.34 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.34 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
{
"name": "patchpilot",
"version": "0.3.1",
"description": "Security scanner for vibe coders - Claude Code hook that checks packages before installation",
"type": "module",
"main": "dist/index.js",
"bin": {
"patchpilot": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test": "vitest",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"claude-code",
"security",
"npm",
"pip",
"brew",
"vulnerabilities",
"osv",
"hook",
"supply-chain",
"scanner",
"pre-execution"
],
"author": "Florian Steiner",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ProduktEntdecker/patchpilot-cli.git"
},
"bugs": {
"url": "https://github.com/ProduktEntdecker/patchpilot-cli/issues"
},
"homepage": "https://github.com/ProduktEntdecker/patchpilot-cli#readme",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/*.js",
"dist/*.d.ts",
"!dist/*.test.js",
"!dist/*.test.d.ts",
"README.md",
"LICENSE"
],
"dependencies": {
"shell-quote": "^1.8.3",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/shell-quote": "^1.7.5",
"tsx": "^4.0.0",
"typescript": "~5.8.0",
"vitest": "^2.0.0"
}
}