unduck/package.json

22 lines
501 B
JSON
Raw Normal View History

2025-02-14 21:30:33 -08:00
{
2025-02-14 23:07:10 -08:00
"name": "unduck",
2025-02-14 21:30:33 -08:00
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
2025-03-05 23:26:00 +00:00
"preview": "vite preview",
2025-03-06 23:00:05 +00:00
"format:check": "prettier --check .",
"format:write": "prettier --write .",
2025-03-05 23:26:00 +00:00
"update": "npx npm-check-updates -u && npm install"
2025-02-14 21:30:33 -08:00
},
"devDependencies": {
"npm-check-updates": "^17.1.18",
2025-03-06 23:00:05 +00:00
"prettier": "^3.5.3",
"typescript": "~5.8.3",
"vite": "^6.3.2",
"vite-plugin-pwa": "^1.0.0"
2025-02-14 21:30:33 -08:00
}
}