mirror of
https://github.com/gogrlx/docs.grlx.dev.git
synced 2026-04-02 03:08:53 -07:00
- Astro 5.1 -> 5.17 - Starlight 0.31 -> 0.37 (social config migrated to array format) - Tailwind CSS 3 -> 4 (migrated to Vite plugin + CSS-based config) - sharp 0.32 -> 0.34 - ESLint 8 -> 9 (migrated to flat config) - Prettier, prettier-plugin-astro, prettier-plugin-tailwindcss updated - Removed dotenv (using Astro import.meta.env) - Removed tailwind.config.mjs (config now in CSS via @theme) - Updated Badge import to new Starlight components path - Node.js 18 -> 22 - Switched from npm to bun
31 lines
771 B
JSON
31 lines
771 B
JSON
{
|
|
"name": "docs.grlx.dev",
|
|
"type": "module",
|
|
"version": "0.0.1",
|
|
"scripts": {
|
|
"dev": "astro dev",
|
|
"start": "astro dev",
|
|
"build": "astro build",
|
|
"preview": "astro preview",
|
|
"astro": "astro"
|
|
},
|
|
"dependencies": {
|
|
"@astrojs/starlight": "^0.37.6",
|
|
"@astrojs/starlight-tailwind": "^4.0.2",
|
|
"@fontsource/ibm-plex-mono": "^5.2.7",
|
|
"@fontsource/ibm-plex-sans": "^5.2.8",
|
|
"@fontsource/ibm-plex-serif": "^5.2.7",
|
|
"@tailwindcss/vite": "^4.2.1",
|
|
"astro": "^5.17.3",
|
|
"sharp": "^0.34.5",
|
|
"tailwindcss": "^4.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^9.27.0",
|
|
"eslint-plugin-astro": "^1.6.0",
|
|
"prettier": "^3.8.1",
|
|
"prettier-plugin-astro": "^0.14.1",
|
|
"prettier-plugin-tailwindcss": "^0.7.2"
|
|
}
|
|
}
|