mirror of
https://github.com/isledecomp/isle.pizza.git
synced 2026-02-28 05:47:39 +00:00
Some checks are pending
Build / build (push) Waiting to run
Add a Node.js script that sets up LEGO Island game assets via symlinks: - Accepts source path interactively or via --path/-p flag - Case-insensitive file matching for cross-platform compatibility - Validates all required files before making changes - Supports optional extra/ and textures/ folders - Includes --force/-f flag to skip deletion confirmation Updates README with new setup step and script documentation.
22 lines
596 B
JSON
22 lines
596 B
JSON
{
|
|
"name": "isle.pizza",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build && cp isle.js isle.wasm dist/ && node scripts/workbox-inject.js",
|
|
"build:ci": "vite build && node scripts/workbox-inject.js",
|
|
"check": "svelte-check --fail-on-warnings",
|
|
"preview": "vite preview",
|
|
"prepare:assets": "node scripts/prepare.js"
|
|
},
|
|
"devDependencies": {
|
|
"@sveltejs/vite-plugin-svelte": "^4.0.0",
|
|
"svelte": "^5.0.0",
|
|
"svelte-check": "^4.0.0",
|
|
"typescript": "^5.0.0",
|
|
"vite": "^5.4.0",
|
|
"workbox-cli": "^7.3.0"
|
|
}
|
|
}
|