-
Notifications
You must be signed in to change notification settings - Fork 120
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.64 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
47
48
49
50
51
52
53
54
55
56
{
"name": "clawpatch",
"version": "0.8.1",
"description": "Automated code review that lands fixes.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/openclaw/clawpatch.git"
},
"bin": {
"clawpatch": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"VISION.md",
"LICENSE"
],
"type": "module",
"scripts": {
"build": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\" && tsc -p tsconfig.build.json",
"prepack": "pnpm run 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",
"test:coverage": "vitest run --coverage",
"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": {
"js-tokens": "^10.0.0",
"proper-lockfile": "^4.1.2",
"zod": "^4.6.2"
},
"devDependencies": {
"@types/node": "^22.20.2",
"@types/proper-lockfile": "^4.1.4",
"@vitest/coverage-v8": "^5.0.0",
"oxfmt": "^0.67.0",
"oxlint": "^1.82.0",
"typescript": "^7.0.2",
"vitest": "^5.0.0"
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@11.26.0+sha512.fc0e2bf890b9f983611f1ab68c0637bce914390653699f83c1a78b005ed25f2c81e77920c8fd8eee2ecf0b58b28cdcb00a84d97f69bcf7c56b2f344710238664"
}