-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 893 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 893 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
{
"name": "clawpatch",
"version": "0.1.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 .",
"test": "vitest run"
},
"dependencies": {
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^24.10.1",
"oxfmt": "^0.49.0",
"oxlint": "^1.64.0",
"typescript": "^6.0.3",
"vitest": "^4.1.6"
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@11.1.2"
}