Files
tuxmate-abusoww/package.json
N1C4T 87267b06ab fix: resolve CORS issues in 39dbc46 by moving verification to build-time
- Replace runtime Flathub API calls with static JSON generation
- Add prebuild and predev scripts to specificially fetch verification data
- Refactor useVerification hook to be synchronous
- Fixes Flathub API CORS errors in production
2026-01-25 21:14:42 +04:00

40 lines
1016 B
JSON

{
"name": "tuxmate",
"version": "0.1.0",
"private": true,
"scripts": {
"prebuild": "node scripts/fetch-verified-flatpaks.mjs",
"predev": "node scripts/fetch-verified-flatpaks.mjs",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"clsx": "^2.1.1",
"framer-motion": "^12.23.26",
"gsap": "^3.14.2",
"lucide-react": "^0.561.0",
"next": "16.0.10",
"react": "19.2.1",
"react-dom": "19.2.1",
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^5.1.2",
"eslint": "^9",
"eslint-config-next": "16.0.10",
"jsdom": "^27.4.0",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^4.0.16"
}
}