refactor: port site from Jekyll to Astro

This commit is contained in:
2026-01-10 09:46:51 +00:00
parent 04d807c388
commit 2e5101650f
63 changed files with 9430 additions and 3276 deletions

23
package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "commonflow-org",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"update": "tsx scripts/update-specs.ts",
"astro": "astro"
},
"dependencies": {
"@astrojs/sitemap": "^3.2.1",
"astro": "^5.1.1"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.0.0",
"tailwindcss": "^4.0.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}