-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.39 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
{
"name": "figui",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "node scripts/generate-icons.mjs && vite",
"build": "node scripts/generate-icons.mjs && tsc && vite build",
"build:esp32": "node scripts/generate-icons.mjs && tsc && node scripts/build-esp32.mjs",
"build:demo": "node scripts/generate-icons.mjs && tsc && vite build --mode demo",
"test:config": "node scripts/test-config-compatibility.mjs",
"test:stream": "esbuild scripts/test-gcode-stream.ts --bundle --platform=node --format=esm --outfile=/tmp/fluidui-test-gcode-stream.mjs && node /tmp/fluidui-test-gcode-stream.mjs",
"preview": "vite preview"
},
"dependencies": {
"codejar": "^4.3.0",
"lucide-react": "^0.462.0",
"preact": "^10.29.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"zustand": "^5.0.0"
},
"devDependencies": {
"@gfx/zopfli": "^1.0.15",
"@types/node": "^22.0.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.0",
"autoprefixer": "^10.4.20",
"esbuild": "^0.21.5",
"lightningcss": "^1.33.0",
"postcss": "^8.4.47",
"prettier": "^3.6.2",
"tailwindcss": "^3.4.14",
"tailwindcss-patch": "^9.4.4",
"terser": "^5.49.0",
"typescript": "^5.6.0",
"unplugin-tailwindcss-mangle": "^5.1.4",
"vite": "^5.4.0",
"vite-plugin-singlefile": "^2.0.1"
}
}