- Implemented PrintStepView for displaying countdown and photo results. - Created SelectSourceView for choosing between shooting new photos or uploading existing ones. - Developed ShootingView for capturing photos using the device camera. - Added UploadView for selecting and previewing uploaded photos. - Configured TypeScript settings with tsconfig files for app and node environments. - Set up Vite configuration with PWA support for the application.
33 lines
751 B
JSON
33 lines
751 B
JSON
{
|
|
"name": "photobooth",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"engines": {
|
|
"node": "^20.19.0 || >=22.12.0"
|
|
},
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "run-p type-check \"build-only {@}\" --",
|
|
"preview": "vite preview",
|
|
"build-only": "vite build",
|
|
"type-check": "vue-tsc --build"
|
|
},
|
|
"dependencies": {
|
|
"vue": "^3.5.26",
|
|
"vue-router": "^4.6.4"
|
|
},
|
|
"devDependencies": {
|
|
"@tsconfig/node24": "^24.0.3",
|
|
"@types/node": "^24.10.4",
|
|
"@vitejs/plugin-vue": "^6.0.3",
|
|
"@vue/tsconfig": "^0.8.1",
|
|
"npm-run-all2": "^8.0.4",
|
|
"typescript": "~5.9.3",
|
|
"vite": "^7.3.0",
|
|
"vite-plugin-pwa": "^1.2.0",
|
|
"vite-plugin-vue-devtools": "^8.0.5",
|
|
"vue-tsc": "^3.2.2"
|
|
}
|
|
}
|