Initial commit: Web2App static site to Tauri platform

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-05-27 21:56:23 +08:00
commit 8298278c10
64 changed files with 11509 additions and 0 deletions

23
package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "web2app",
"private": true,
"version": "0.1.0",
"type": "module",
"workspaces": [
"web",
"server",
"template"
],
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:web\"",
"dev:web": "npm run dev -w web",
"dev:server": "npm run dev -w server",
"build": "npm run build -w web && npm run build -w server",
"start": "npm run start -w server"
},
"devDependencies": {
"adm-zip": "^0.5.17",
"concurrently": "^9.1.2",
"typescript": "~5.6.2"
}
}