use bun runtime

This commit is contained in:
Troy 2025-02-24 17:00:20 +00:00
parent c6c6c2555b
commit d2c5a79a10
Signed by: troy
GPG key ID: DFC06C02ED3B4711
4 changed files with 38 additions and 33 deletions

View file

@ -3,9 +3,9 @@
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"dev": "bunx --bun astro dev",
"build": "bunx --bun astro check && bunx --bun astro build",
"preview": "bunx --bun astro preview",
"astro": "astro",
"format:check": "prettier --check .",
"format:write": "prettier --write ."
@ -17,18 +17,18 @@
"@astrojs/sitemap": "3.2.1",
"@fontsource-variable/outfit": "^5.1.1",
"@fontsource-variable/red-hat-mono": "^5.1.1",
"@tailwindcss/vite": "^4.0.7",
"astro": "^5.3.0",
"@tailwindcss/vite": "^4.0.8",
"astro": "^5.3.1",
"astro-icon": "^1.1.5",
"rehype-external-links": "^3.0.0",
"tailwindcss": "^4.0.7",
"tailwindcss": "^4.0.8",
"typescript": "^5.7.3"
},
"devDependencies": {
"@iconify-json/mdi": "^1.2.3",
"@tailwindcss/typography": "^0.5.16",
"@types/bun": "^1.2.2",
"prettier": "^3.5.1",
"@types/bun": "^1.2.3",
"prettier": "^3.5.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.11"
}