-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 2.04 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
{
"name": "coderix",
"version": "0.1.0",
"type": "module",
"description": "Coderix — A fully open-source AI programming assistant for the terminal",
"bin": {
"coderix": "./bin/coderix.js"
},
"scripts": {
"start": "cross-env NODE_ENV=production tsx --tsconfig packages/coderix-cli/tsconfig.json packages/coderix-cli/src/cli/main.tsx",
"dev": "cross-env NODE_ENV=production tsx --tsconfig packages/coderix-cli/tsconfig.json --watch packages/coderix-cli/src/cli/main.tsx",
"dev:cli": "cross-env NODE_ENV=production tsx --tsconfig packages/coderix-cli/tsconfig.json --watch packages/coderix-cli/src/cli/main.tsx",
"dev:vscode": "pnpm --filter @coderix/vscode dev",
"build": "pnpm --filter @coderix/core build && pnpm --filter @coderix/cli build",
"build:all": "pnpm --filter @coderix/core build && pnpm --filter @coderix/cli build && pnpm --filter @coderix/vscode build",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"dev:desk": "pnpm --filter @coderix/desktop dev"
},
"dependencies": {
"@agentclientprotocol/sdk": "^0.28.1",
"@anthropic-ai/sdk": "^0.102.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@tauri-apps/cli": "^2.11.4",
"chrome-remote-interface": "^0.34.0",
"electron": "^33.4.11",
"gray-matter": "^4.0.3",
"highlight.js": "^11.11.1",
"proper-lockfile": "^4.1.2",
"react": "^19.2.4",
"shell-quote": "^1.8.4",
"tree-kill": "^1.2.2",
"undici": "^7.27.2",
"ws": "^8.21.0",
"yoga-layout": "^2.0.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/react": "^19.2.14",
"@types/shell-quote": "^1.7.5",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^4.1.8",
"cross-env": "^10.1.0",
"tsx": "^4.19.0",
"typescript": "^5.9.3",
"vitest": "^4.1.8"
},
"packageManager": "pnpm@11.3.0+sha512.2c403d6594527287672b1f7056343a1f7c3634036a67ffabfcc2b3d7595d843768f8787148d1b57cf7956c90606bbd192857c363af19e96d2d0ec9ec5741d215"
}