-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 3.71 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 3.71 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
{
"name": "repatch",
"version": "0.1.0",
"description": "Autonomous bug-fixing agent — reproduce, fix, verify, and submit PRs",
"type": "module",
"main": "dist/index.js",
"bin": {
"repatch": "dist/index.js"
},
"scripts": {
"build": "tsc",
"build:bin": "npx esbuild dist/index.js --bundle --platform=node --format=cjs --outfile=dist/pkg-bundle.cjs --external:@google/generative-ai --external:dockerode --external:execa --external:glob --external:ora --external:chalk --external:js-yaml --external:zod --external:dotenv --external:readline/promises && pkg dist/pkg-bundle.cjs --targets node18-win,node18-linux,node18-macos --output dist/repatch",
"build:bin:win": "npx esbuild dist/index.js --bundle --platform=node --format=cjs --outfile=dist/pkg-bundle.cjs --external:@google/generative-ai --external:dockerode --external:execa --external:glob --external:ora --external:chalk --external:js-yaml --external:zod --external:dotenv --external:readline/promises && pkg dist/pkg-bundle.cjs --targets node18-win --output dist/repatch-win.exe",
"build:bin:linux": "npx esbuild dist/index.js --bundle --platform=node --format=cjs --outfile=dist/pkg-bundle.cjs --external:@google/generative-ai --external:dockerode --external:execa --external:glob --external:ora --external:chalk --external:js-yaml --external:zod --external:dotenv --external:readline/promises && pkg dist/pkg-bundle.cjs --targets node18-linux --output dist/repatch-linux",
"build:bin:macos:x64": "npx esbuild dist/index.js --bundle --platform=node --format=cjs --outfile=dist/pkg-bundle.cjs --external:@google/generative-ai --external:dockerode --external:execa --external:glob --external:ora --external:chalk --external:js-yaml --external:zod --external:dotenv --external:readline/promises && pkg dist/pkg-bundle.cjs --targets node18-macos-x64 --output dist/repatch-macos-x64",
"build:bin:macos:arm64": "npx esbuild dist/index.js --bundle --platform=node --format=cjs --outfile=dist/pkg-bundle.cjs --external:@google/generative-ai --external:dockerode --external:execa --external:glob --external:ora --external:chalk --external:js-yaml --external:zod --external:dotenv --external:readline/promises && pkg dist/pkg-bundle.cjs --targets node18-macos-arm64 --output dist/repatch-macos-arm64",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"audit": "npm audit --audit-level=high",
"sbom": "npx @cyclonedx/bom@latest -o sbom.json"
},
"keywords": [
"repatch",
"bug-fix",
"autonomous-agent",
"code-review",
"llm",
"github"
],
"author": "Sagar Kharal <sarkharal024@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Sagar-024/Repatch.git"
},
"bugs": {
"url": "https://github.com/Sagar-024/Repatch/issues"
},
"homepage": "https://github.com/Sagar-024/Repatch#readme",
"pkg": {
"targets": [
"node18-win-x64",
"node18-linux-x64",
"node18-macos-x64",
"node18-macos-arm64"
],
"outputPath": "dist",
"assets": [
"dist/**/*"
]
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@types/js-yaml": "^4.0.9",
"chalk": "^5.6.2",
"commander": "^12.1.0",
"dockerode": "^4.0.2",
"dotenv": "^17.4.2",
"execa": "^9.5.2",
"glob": "^13.0.6",
"js-yaml": "^4.1.1",
"ora": "^9.4.0",
"simple-git": "^3.27.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/dockerode": "^3.3.31",
"@types/glob": "^8.1.0",
"@types/node": "^22.10.5",
"@vitest/coverage-v8": "^4.1.6",
"esbuild": "^0.28.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^4.1.6"
}
}