Files
web2app/package.json
Cursor Agent 0e6e546f44 fix(ci): center-crop non-square logos before tauri icon generation
tauri icon requires a square source image. Uploaded logos like 727x721
caused Prepare template to fail. Use sharp to center-crop to square
before generating platform icons.

Co-authored-by: ShuMengya <shumengya666@outlook.com>
2026-05-30 08:15:25 +00:00

26 lines
672 B
JSON

{
"name": "web2app",
"private": true,
"version": "0.1.0",
"type": "module",
"workspaces": [
"frontend",
"worker",
"template"
],
"scripts": {
"dev": "concurrently -n web,worker -c green,blue \"npm run dev -w frontend\" \"wrangler dev\"",
"build": "npm run build -w frontend",
"deploy": "npm run build && wrangler deploy",
"db:migrate:local": "wrangler d1 migrations apply web2app --local",
"db:migrate:remote": "wrangler d1 migrations apply web2app --remote"
},
"devDependencies": {
"adm-zip": "^0.5.17",
"concurrently": "^9.1.2",
"sharp": "^0.34.2",
"typescript": "~5.6.2",
"wrangler": "^3.99.0"
}
}