Initial project scaffold: Astro + OpenSpec + Claude Code config

This commit is contained in:
2026-04-10 12:41:18 +02:00
commit ed946c03d7
46 changed files with 9304 additions and 0 deletions

22
website/package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "website",
"type": "module",
"version": "0.0.1",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"astro": "^6.1.5"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.19",
"prettier": "^3.8.2",
"prettier-plugin-astro": "^0.14.1"
}
}