-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.65 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
{
"name": "codedrobe-desktop",
"productName": "CodeDrobe",
"version": "2.0.0",
"description": "Open-source theme manager and desktop customization tool for the OpenAI Codex app on macOS and Windows.",
"author": "CodeDrobe",
"license": "MPL-2.0",
"main": ".vite/build/main.js",
"private": true,
"scripts": {
"icons": "node scripts/generate-desktop-icons.mjs",
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"make:windows:installers": "electron-builder --config electron-builder.yml --prepackaged out/CodeDrobe-win32-x64 --win --x64",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"check": "npm run typecheck && npm run test"
},
"dependencies": {
"@base-ui/react": "^1.6.0",
"@codedrobe/core": "0.3.1",
"@hugeicons/core-free-icons": "^4.2.2",
"@hugeicons/react": "^1.1.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"tailwind-merge": "^3.6.0"
},
"devDependencies": {
"@electron-forge/cli": "^7.8.3",
"@electron-forge/maker-dmg": "^7.8.3",
"@electron-forge/maker-wix": "^7.11.2",
"@electron-forge/maker-zip": "^7.8.3",
"@electron-forge/plugin-vite": "^7.8.3",
"@tailwindcss/postcss": "4.2.1",
"@types/node": "^24.3.0",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react": "^5.0.2",
"electron": "^37.3.1",
"electron-builder": "^26.15.3",
"shadcn": "^4.13.0",
"tailwindcss": "4.2.1",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.2",
"vite": "^7.1.3",
"vitest": "^3.2.4"
}
}