-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.21 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.21 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
{
"name": "patchwork-agent",
"version": "0.1.0",
"description": "Autonomous SWE agent — triage and fix issues from Sentry, Asana, Linear, and Jira with Claude",
"module": "src/cli.ts",
"type": "module",
"bin": {
"patchwork": "src/cli.ts"
},
"files": [
"src/",
"dist/"
],
"engines": {
"bun": ">=1.0.0"
},
"scripts": {
"start": "bun run build && bun src/cli.ts start",
"dev": "DEV=1 bun --watch src/cli.ts start & bunx vite --config dashboard/vite.config.ts --open",
"build": "bunx vite build --config dashboard/vite.config.ts",
"test": "bun test",
"prepublishOnly": "bun run build"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@tailwindcss/vite": "^4.2.1",
"@tanstack/react-query": "^5.90.21",
"@types/bun": "latest",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-router": "^7.13.1",
"semantic-release": "^24.0.0",
"tailwindcss": "^4.2.1",
"vite": "^7.3.1"
},
"dependencies": {
"hono": "^4.12.5"
},
"publishConfig": {
"access": "public"
}
}