-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.9 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
{
"name": "cotux",
"description": "Native Linux desktop client for ChatGPT/Codex coding workflows with a bundled Codex App Server runtime",
"private": true,
"version": "0.1.0-beta.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"test": "vitest run",
"preview": "vite preview",
"tauri": "tauri",
"fetch:runtime": "tsx scripts/fetch-codex-runtime.ts",
"validate:runtime": "tsx scripts/validate-runtime.ts",
"merge:codex-home": "python3 scripts/merge-codex-home.py",
"build:appimage": "npm run tauri build && bash scripts/fix-local-appimage.sh",
"icons:generate": "tauri icon src-tauri/icons/app-icon.png",
"install:ui-deps": "cd frontend-deps && npm install",
"prebuild": "npm run fetch:runtime",
"pretauri": "npm run fetch:runtime"
},
"dependencies": {
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.2.8",
"@tailwindcss/typography": "^0.5.20",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2.7.2",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-shell": "^2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"highlight.js": "^11.11.1",
"lucide-react": "^0.542.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.3.1"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.12",
"@tauri-apps/cli": "^2",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"tailwindcss": "^4.1.12",
"tsx": "^4.20.5",
"typescript": "~5.8.3",
"vite": "^7.0.4",
"vitest": "^3.2.4"
}
}