-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1023 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1023 Bytes
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
{
"name": "gpt-image-playground",
"private": true,
"version": "0.4.8",
"type": "module",
"scripts": {
"dev": "vite",
"mock:api": "node scripts/mock-image-api.mjs",
"build": "tsc -b && vite build",
"deploy:cf": "npm run build && wrangler deploy",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@fal-ai/client": "^1.10.0",
"core-js": "^3.49.0",
"fflate": "^0.8.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"streamdown": "^2.5.0",
"zustand": "^5.0.5"
},
"overrides": {
"mdast-util-gfm-autolink-literal": "2.0.0"
},
"devDependencies": {
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^4.4.1",
"autoprefixer": "^10.4.21",
"postcss": "^8.5.3",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.3",
"vite": "^6.3.2",
"vitest": "^4.1.5",
"wrangler": "^4.88.0"
}
}