-
Notifications
You must be signed in to change notification settings - Fork 95
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": "clawpatch",
"version": "0.4.0",
"description": "Automated code review that lands fixes.",
"license": "MIT",
"bin": {
"clawpatch": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"type": "module",
"scripts": {
"build": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\" && tsc -p tsconfig.build.json",
"prepack": "pnpm -s build",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "oxlint . --config oxlint.json",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"website:smoke": "node scripts/website-smoke.mjs",
"test": "vitest run",
"pack:smoke": "node scripts/package-smoke.mjs",
"check:changed": "pnpm run test",
"test:changed": "pnpm run test",
"crabbox:hydrate": "crabbox actions hydrate",
"crabbox:run": "crabbox run",
"crabbox:stop": "crabbox stop",
"crabbox:warmup": "crabbox warmup"
},
"dependencies": {
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^25.8.0",
"oxfmt": "^0.50.0",
"oxlint": "^1.64.0",
"typescript": "^6.0.3",
"vitest": "^4.1.6"
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@11.1.2"
}