This initial commit scaffolds the project with essential docs, assets, and build configs. It adds Android icons, design assets, and release metadata to support mobile targets. A fastlane config and F-Droid manifest are included to streamline builds. - Adds F-Droid configuration for automated builds - Includes license and privacy policy documents - Provides app icons and assets for Android and design system
29 lines
635 B
JSON
29 lines
635 B
JSON
{
|
|
"name": "lockscreenwallpaper",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"license": "GPL-3.0-only",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc && vite build",
|
|
"preview": "vite preview",
|
|
"tauri": "tauri"
|
|
},
|
|
"dependencies": {
|
|
"@tauri-apps/api": "^2.8.0",
|
|
"lucide-react": "^0.468.0",
|
|
"react": "^19.1.0",
|
|
"react-dom": "^19.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@tauri-apps/cli": "^2.8.0",
|
|
"@types/react": "^19.1.0",
|
|
"@types/react-dom": "^19.1.0",
|
|
"@vitejs/plugin-react": "^4.4.1",
|
|
"playwright": "^1.62.1",
|
|
"typescript": "~5.8.3",
|
|
"vite": "^6.3.5"
|
|
}
|
|
}
|