forked from codinit-dev/codinit-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
238 lines (238 loc) · 9.12 KB
/
package.json
File metadata and controls
238 lines (238 loc) · 9.12 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
{
"name": "codinit",
"description": "An AI-Powered Development Platform",
"private": true,
"license": "MIT",
"sideEffects": false,
"type": "module",
"version": "1.1.17",
"author": {
"name": "Gerome-Elassaad",
"email": "gerome.e24@gmail.com"
},
"scripts": {
"deploy": "npm run build && wrangler pages deploy",
"build": "cross-env NODE_OPTIONS=--max-old-space-size=4096 remix vite:build",
"dev": "node pre-start.cjs && remix vite:dev",
"test": "vitest --run",
"test:watch": "vitest",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint app",
"lint:fix": "npm run lint -- --fix && prettier app --write",
"start:windows": "wrangler pages dev ./build/client",
"start:unix": "bindings=$(./bindings.sh) && wrangler pages dev ./build/client $bindings",
"start": "node -e \"const { spawn } = require('child_process'); const isWindows = process.platform === 'win32'; const cmd = isWindows ? 'npm run start:windows' : 'npm run start:unix'; const child = spawn(cmd, { shell: true, stdio: 'inherit' }); child.on('exit', code => process.exit(code));\"",
"dockerstart": "bindings=$(./bindings.sh) && wrangler pages dev ./build/client $bindings --ip 0.0.0.0 --port 5173 --no-show-interactive-dev-session",
"dockerrun": "docker run -it -d --name codinit-ai-live -p 5173:5173 --env-file .env codinit-ai",
"dockerbuild:prod": "docker build -t codinit-ai:production -t codinit-ai:latest --target codinit-ai-production .",
"dockerbuild": "docker build -t codinit-ai:development -t codinit-ai:latest --target codinit-ai-development .",
"typecheck": "tsc",
"typegen": "wrangler types",
"preview": "pnpm run build && pnpm run start",
"prepare": "husky",
"clean": "node scripts/clean.js",
"electron:dev": "node scripts/electron-dev.mjs",
"electron:dev:inspect": "cross-env NODE_ENV=development electron --inspect=9229 build/electron/main/index.mjs",
"electron:build:deps": "concurrently \"pnpm electron:build:main\" \"pnpm electron:build:preload\" --kill-others-on-fail",
"electron:build:main": "vite build --config ./electron/main/vite.config.ts",
"electron:build:preload": "vite build --config ./electron/preload/vite.config.ts",
"electron:build:renderer": "cross-env NODE_OPTIONS=--max-old-space-size=8192 remix vite:build --config vite-electron.config.js",
"electron:build:unpack": "rimraf dist && pnpm electron:build:renderer && pnpm electron:build:deps && electron-builder --dir",
"electron:build:mac": "rimraf dist && pnpm electron:build:renderer && pnpm electron:build:deps && electron-builder --mac",
"electron:build:win": "rimraf dist && pnpm electron:build:renderer && pnpm electron:build:deps && electron-builder --win",
"electron:build:linux": "rimraf dist && pnpm electron:build:renderer && pnpm electron:build:deps && electron-builder --linux",
"electron:build:dist": "rimraf dist && pnpm electron:build:renderer && pnpm electron:build:deps && electron-builder -m -w -l",
"email:dev": "email dev --dir emails --port 3000",
"email:export": "email export --dir emails --outDir .react-email"
},
"engines": {
"node": ">=20.15.1"
},
"dependencies": {
"@ai-sdk/amazon-bedrock": "1.0.6",
"@ai-sdk/anthropic": "0.0.39",
"@ai-sdk/cohere": "1.0.3",
"@ai-sdk/deepseek": "0.1.3",
"@ai-sdk/google": "0.0.52",
"@ai-sdk/mistral": "0.0.43",
"@ai-sdk/openai": "1.1.2",
"@ai-sdk/react": "^1.2.12",
"@ai-sdk/ui-utils": "^1.2.11",
"@amplitude/analytics-browser": "^2.30.1",
"@amplitude/plugin-session-replay-browser": "^1.23.2",
"@codemirror/autocomplete": "^6.19.0",
"@codemirror/commands": "^6.9.0",
"@codemirror/lang-cpp": "^6.0.3",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-javascript": "^6.2.4",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.4.0",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-sass": "^6.0.2",
"@codemirror/lang-vue": "^0.1.3",
"@codemirror/lang-wast": "^6.0.2",
"@codemirror/language": "^6.11.3",
"@codemirror/search": "^6.5.11",
"@codemirror/state": "^6.5.2",
"@codemirror/view": "^6.38.4",
"@headlessui/react": "^2.2.9",
"@heroicons/react": "^2.2.0",
"@iconify-json/lucide": "^1.2.73",
"@iconify-json/svg-spinners": "^1.2.4",
"@lezer/highlight": "^1.2.1",
"@modelcontextprotocol/sdk": "^1.20.0",
"@nanostores/react": "^0.7.3",
"@octokit/rest": "^21.1.1",
"@octokit/types": "^13.10.0",
"@openrouter/ai-sdk-provider": "^0.0.5",
"@phosphor-icons/react": "^2.1.10",
"@playwright/test": "^1.56.1",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@react-email/components": "^0.5.7",
"@react-email/render": "^1.4.0",
"@remix-run/cloudflare": "^2.17.1",
"@remix-run/cloudflare-pages": "^2.17.1",
"@remix-run/node": "^2.17.1",
"@remix-run/react": "^2.17.1",
"@tanstack/react-virtual": "^3.13.12",
"@types/unist": "^3.0.3",
"@uiw/codemirror-theme-vscode": "^4.25.2",
"@unocss/reset": "^0.61.9",
"@webcontainer/api": "1.6.1-internal.1",
"@webcontainer/test": "^0.2.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/xterm": "^5.5.0",
"ai": "4.3.16",
"chalk": "^5.6.2",
"chart.js": "^4.5.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^3.6.0",
"diff": "^5.2.0",
"dotenv": "^16.6.1",
"electron-log": "^5.4.3",
"electron-store": "^10.1.0",
"electron-updater": "^6.6.2",
"file-saver": "^2.0.5",
"framer-motion": "^11.18.2",
"fuse.js": "^7.1.0",
"heroicons": "^2.2.0",
"ignore": "^6.0.2",
"isbot": "^4.4.0",
"isomorphic-git": "^1.34.0",
"istextorbinary": "^9.5.0",
"jose": "^5.10.0",
"js-cookie": "^3.0.5",
"jspdf": "^3.0.2",
"jszip": "^3.10.1",
"lucide-react": "^0.485.0",
"mime": "^4.1.0",
"nanostores": "^0.10.3",
"ollama-ai-provider": "^0.15.2",
"path-browserify": "^1.0.1",
"react": "^18.3.1",
"react-chartjs-2": "^5.3.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.3.1",
"react-email": "^4.3.2",
"react-hotkeys-hook": "^4.6.2",
"react-icons": "^5.5.0",
"react-markdown": "^9.1.0",
"react-qrcode-logo": "^3.0.0",
"react-resizable-panels": "^2.1.9",
"react-toastify": "^10.0.6",
"react-window": "^1.8.11",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1",
"remix-island": "^0.2.0",
"remix-utils": "^7.7.0",
"resend": "^6.2.2",
"rollup-plugin-node-polyfills": "^0.2.1",
"shiki": "^1.29.2",
"tailwind-merge": "^2.6.0",
"unist-util-visit": "^5.0.0",
"use-debounce": "^10.0.6",
"vite-plugin-node-polyfills": "^0.22.0",
"zod": "^3.25.76",
"zustand": "^5.0.8"
},
"devDependencies": {
"@blitz/eslint-plugin": "0.1.0",
"@cloudflare/workers-types": "^4.20251004.0",
"@electron/notarize": "^2.5.0",
"@iconify-json/ph": "^1.2.2",
"@iconify-json/simple-icons": "^1.2.54",
"@iconify/types": "^2.0.0",
"@remix-run/dev": "^2.17.1",
"@remix-run/serve": "^2.17.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/diff": "^5.2.3",
"@types/dom-speech-recognition": "^0.0.4",
"@types/file-saver": "^2.0.7",
"@types/js-cookie": "^3.0.6",
"@types/path-browserify": "^1.0.3",
"@types/react": "^18.3.25",
"@types/react-dom": "^18.3.7",
"@types/react-window": "^1.8.8",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/browser": "^3.1.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"electron": "^35.7.5",
"electron-builder": "^26.0.12",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"fast-glob": "^3.3.3",
"husky": "9.1.7",
"is-ci": "^3.0.1",
"jsdom": "^26.1.0",
"node-fetch": "^3.3.2",
"pnpm": "^9.15.9",
"prettier": "^3.6.2",
"rimraf": "^4.4.1",
"sass-embedded": "^1.93.2",
"stream-browserify": "^3.0.0",
"typescript": "^5.9.3",
"unified": "^11.0.5",
"unocss": "^0.61.9",
"vite": "^5.4.21",
"vite-plugin-copy": "^0.1.6",
"vite-plugin-optimize-css-modules": "^1.2.0",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^3.2.4",
"wrangler": "^4.42.0"
},
"resolutions": {
"@typescript-eslint/utils": "^8.0.0-alpha.30"
},
"pnpm": {
"overrides": {
"wrangler": "^4.42.1",
"jsondiffpatch": "^0.7.2"
},
"peerDependencyRules": {
"allowedVersions": {
"wrangler": "4"
}
}
},
"packageManager": "pnpm@9.15.9"
}