-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.51 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
57
58
{
"name": "@fullstackhouse/cerber",
"version": "0.30.0",
"description": "AI code-review cockpit: Claude reviews your PRs into local artifacts; nothing reaches GitHub until you say so.",
"license": "MIT",
"author": "Full Stack House (https://fullstack.house)",
"repository": "github:fullstackhouse/cerber",
"type": "module",
"packageManager": "pnpm@10.33.2",
"bin": {
"cerber": "dist/cli/index.js"
},
"engines": {
"node": ">=20"
},
"files": [
"dist",
"web/dist",
"assets",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"dev": "tsx src/cli/index.ts",
"build": "tsc -p tsconfig.build.json && vite build --config web/vite.config.ts",
"typecheck": "tsc -p tsconfig.json --noEmit && tsc -p web/tsconfig.json --noEmit",
"test": "vitest run",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"@hono/node-server": "^1.13.7",
"commander": "^13.1.0",
"diff2html": "^3.4.51",
"hono": "^4.6.16",
"zod": "^3.24.1"
},
"devDependencies": {
"@semantic-release/git": "^11.0.1",
"@types/node": "^22.10.5",
"@types/react": "^19.0.4",
"@types/react-dom": "^19.0.2",
"@vitejs/plugin-react": "^4.3.4",
"dompurify": "^3.4.13",
"highlight.js": "^11.12.0",
"marked": "^18.0.10",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"semantic-release": "^25.0.9",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vite": "^6.0.7",
"vitest": "^2.1.8"
}
}