-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.42 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "chorus-codes",
"version": "0.8.63",
"description": "Driver-agnostic multi-LLM peer review for code decisions. Bring your own CLI; Chorus convenes 2-4 other LLMs to review the work before you ship.",
"license": "Apache-2.0",
"author": "99x Agency",
"homepage": "https://chorus.codes",
"repository": {
"type": "git",
"url": "https://github.com/chorus-codes/chorus.git"
},
"bin": {
"chorus": "./bin/chorus.mjs"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "next dev -p 5050 -H 127.0.0.1",
"dev:daemon": "tsx watch src/daemon/index.ts",
"dev:mcp": "tsx src/mcp/index.ts",
"build": "next build --webpack",
"start": "next start -p 5050 -H 127.0.0.1",
"start:daemon": "node dist/daemon/index.js",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"build:server": "tsc -p tsconfig.server.json && node -e \"require('fs').mkdirSync('dist/lib/db',{recursive:true});require('fs').copyFileSync('src/lib/db/schema.sql','dist/lib/db/schema.sql')\"",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "rm -rf dist .next *.tsbuildinfo && pnpm build && pnpm build:server && rm -rf .next/cache && test -f dist/cli/index.js && test -f dist/daemon/index.js && test -f dist/mcp/index.js",
"postinstall": "node scripts/postinstall.mjs"
},
"dependencies": {
"@fastify/cors": "^10.0.0",
"@libsql/client": "^0.14.0",
"@modelcontextprotocol/sdk": "~1.29.0",
"chokidar": "^5.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"commander": "^12.1.0",
"fastify": "^5.0.0",
"lucide-react": "^1.12.0",
"next": "16.2.4",
"open": "^10.1.0",
"radix-ui": "^1.4.3",
"react": "19.2.4",
"react-dom": "19.2.4",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"yaml": "^2.6.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/coverage-v8": "^2.1.0",
"eslint": "^9",
"eslint-config-next": "16.2.4",
"tailwindcss": "^4",
"tsx": "^4.19.0",
"typescript": "^5",
"typescript-eslint": "^8.59.1",
"vitest": "^2.1.0"
},
"engines": {
"node": ">=20"
},
"files": [
"bin",
"dist",
".next",
"templates",
"prompts",
"assets",
"scripts/postinstall.mjs"
]
}