-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 819 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 819 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
39
40
{
"name": "patchwork-ai",
"version": "0.1.1",
"description": "AI-powered CLI that automates OSS contributions",
"type": "module",
"bin": {
"patchwork-ai": "./dist/bin/patchwork-ai.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit"
},
"keywords": [
"oss",
"github",
"ai",
"automation",
"contributions"
],
"license": "MIT",
"engines": {
"node": ">=20"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.80.0",
"@types/node": "^25.5.0",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"octokit": "^5.0.5",
"openai": "^6.33.0",
"ora": "^9.3.0",
"simple-git": "^3.33.0",
"typescript": "^6.0.2",
"vitest": "^4.1.1",
"yaml": "^2.8.3"
}
}