-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.43 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
{
"name": "patchbrake",
"version": "0.2.0",
"description": "A local safety gate for AI-generated patches.",
"license": "MIT",
"author": "PatchBrake contributors",
"homepage": "https://github.com/RyanCoreAI/patchbrake#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/RyanCoreAI/patchbrake.git"
},
"bugs": {
"url": "https://github.com/RyanCoreAI/patchbrake/issues"
},
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"bin": {
"patchbrake": "dist/cli.js"
},
"files": [
"dist",
"docs",
"benchmarks",
"README.md",
"LICENSE",
"CHANGELOG.md",
"action.yml"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "vitest run",
"test:watch": "vitest",
"benchmark": "node dist/cli.js benchmark",
"check": "npm run build && npm run test && npm run benchmark",
"prepack": "npm run build"
},
"keywords": [
"ai-coding",
"developer-tools",
"git",
"cli",
"github-actions",
"code-review",
"diff-analysis",
"guardrails",
"pre-commit"
],
"dependencies": {
"commander": "^12.1.0"
},
"devDependencies": {
"@types/node": "^20.19.0",
"typescript": "^5.8.3",
"vitest": "^1.6.1"
}
}