-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 911 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 911 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
{
"name": "logo-bin-tool",
"version": "1.0.1",
"description": "Web-based extract and repack tool for Unisoc logo.bin firmware images",
"main": "server.js",
"scripts": {
"build:css": "tailwindcss -i ./src/css/input.css -o ./public/css/style.css --minify",
"build:icons": "node scripts/copyIcons.js",
"build": "npm run build:css && npm run build:icons",
"dev": "concurrently \"tailwindcss -i ./src/css/input.css -o ./public/css/style.css --watch\" \"nodemon server.js\"",
"start": "node server.js"
},
"dependencies": {
"express": "^4.19.2",
"lucide": "^0.400.0",
"multer": "^2.0.0",
"sharp": "^0.33.4"
},
"devDependencies": {
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
"nodemon": "^3.1.4",
"postcss": "^8.4.39",
"tailwindcss": "^3.4.6"
},
"engines": {
"node": ">=18.0.0"
},
"license": "MIT",
"author": "alwizba"
}