sochboard/package.json
maxsoch 457a6a284a feat: v0.3 improvements
- Show software version under site title
- Fix background stopping on very wide screens (move gradient to body)
- Validate Remote-User header value to avoid showing placeholder when not authenticated
- Toggle login/logout button based on auth state via login_url config
- Bump version to 0.3.0
2026-08-02 18:25:04 +02:00

30 lines
737 B
JSON

{
"name": "sochboard",
"version": "0.3.0",
"private": true,
"scripts": {
"dev": "node node_modules/next/dist/bin/next dev",
"build": "node node_modules/next/dist/bin/next build",
"start": "node node_modules/next/dist/bin/next start",
"lint": "node node_modules/eslint/bin/eslint.js ."
},
"dependencies": {
"lucide-react": "^1.26.0",
"next": "16.2.11",
"react": "19.2.4",
"react-dom": "19.2.4",
"yaml": "^2.9.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.11",
"tailwindcss": "^4",
"typescript": "^5"
}
}