Initial commit: Sproutlink short URL system

This commit is contained in:
2026-06-18 20:08:22 +08:00
commit 45875e9feb
40 changed files with 11485 additions and 0 deletions

27
web/package.json Normal file
View File

@@ -0,0 +1,27 @@
{
"name": "sproutlink-web",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"gen:pwa-icons": "node scripts/gen-pwa-icons.mjs"
},
"dependencies": {
"qrcode": "^1.5.4",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/qrcode": "^1.5.6",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"sharp": "^0.34.5",
"typescript": "^5.5.4",
"vite": "^5.4.8",
"vite-plugin-pwa": "^1.2.0"
}
}