chore(site): scaffold astro project, remove legacy SPA

This commit is contained in:
Christian Visintin
2026-06-07 21:10:57 +02:00
parent c27748272d
commit a54ff078cc
36 changed files with 7217 additions and 1933 deletions

24
site/package.json Normal file
View File

@@ -0,0 +1,24 @@
{
"name": "termscp-site",
"type": "module",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "astro dev",
"prebuild": "node scripts/fetch-man.mjs",
"build": "astro build",
"preview": "astro preview",
"check": "astro check",
"test": "vitest run"
},
"dependencies": {
"astro": "^5.0.0",
"@astrojs/sitemap": "^3.2.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.0.0",
"tailwindcss": "^4.0.0",
"typescript": "^5.6.0",
"vitest": "^2.1.0"
}
}