-
Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.92 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
{
"name": "claudish-monorepo",
"version": "7.5.0",
"private": true,
"description": "Monorepo for Claudish - Run Claude Code with any model",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "cd packages/cli && exec bun run src/index.ts",
"dev:mcp": "bun run --cwd packages/cli dev:mcp",
"dev:grok": "bun run --cwd packages/cli dev:grok",
"dev:grok:debug": "bun run --cwd packages/cli dev:grok:debug",
"dev:info": "bun run --cwd packages/cli dev:info",
"dev:bridge": "bun --cwd packages/macos-bridge run dev",
"build": "bun run build:cli && bun run build:bridge",
"build:cli": "cd packages/cli && bun run build",
"build:bridge": "cd packages/macos-bridge && bun run build",
"typecheck": "bun run --cwd packages/cli typecheck && bun --cwd packages/macos-bridge run typecheck",
"lint": "bun run --cwd packages/cli lint && bun --cwd packages/macos-bridge run lint",
"format": "bun run --cwd packages/cli format && bun --cwd packages/macos-bridge run format",
"test": "bun run --cwd packages/cli test && bun --cwd packages/macos-bridge run test",
"clean": "rm -rf packages/*/dist packages/*/node_modules node_modules",
"postinstall": "node scripts/postinstall.cjs"
},
"dependencies": {
"@hono/node-server": "^1.19.6",
"@inquirer/prompts": "^8.0.1",
"@inquirer/search": "^4.0.1",
"@modelcontextprotocol/sdk": "^1.27.0",
"dotenv": "^17.2.3",
"hono": "^4.10.6",
"undici": "^7.16.0",
"zod": "^4.1.13"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "latest",
"@types/jest": "^30.0.0",
"jest": "^30.2.0",
"jest-environment-node": "^30.2.0",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=18.0.0",
"bun": ">=1.0.0"
},
"author": "Jack Rudenko <i@madappgang.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MadAppGang/claudish"
}
}