-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 723 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 723 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
{
"name": "ai-auto-debugger",
"version": "3.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"test": "vitest run",
"lint": "biome check src/ tests/",
"format": "biome format --write src/ tests/",
"build": "rollup --config rollup.config.js"
},
"devDependencies": {
"@biomejs/biome": "^1.9",
"@cloudflare/vitest-pool-workers": "^0.8",
"@rollup/plugin-commonjs": "^28",
"@rollup/plugin-node-resolve": "^15",
"rollup": "^4",
"vitest": "^3",
"wrangler": "^4"
},
"dependencies": {
"@actions/core": "^1.11",
"@actions/github": "^6.0",
"@octokit/auth-app": "^7.1",
"fflate": "^0.8"
}
}