Files
SnapOtter/apps/landing/package.json
T
SnapOtterandGitHub c3d7411c67 chore(landing): upgrade to Astro 6 (resolves the astro security advisory) (#260)
Bump astro ^5.8.0 -> ^6.4.7, @astrojs/sitemap ^3.3.0 -> ^3.7.3, @astrojs/check ^0.9.0 -> ^0.9.9.

The landing uses none of the Astro APIs removed in v6 (no Astro.glob, ViewTransitions, or content collections), so no code changes were required. Astro 6 runs on the repo's existing Vite 8 (the monorepo is already on Vite 8 via the shared override).

Verified: landing build (165 pages) + astro check (0 errors); full monorepo build/typecheck/lint all pass; homepage renders correctly.
2026-06-17 11:11:34 +08:00

27 lines
636 B
JSON

{
"name": "@snapotter/landing",
"version": "1.17.1",
"private": true,
"type": "module",
"scripts": {
"dev": "astro dev --port 1350",
"build": "astro build",
"preview": "astro preview --port 1350",
"lint": "biome check src/",
"typecheck": "astro check && tsc --noEmit",
"clean": "rm -rf dist .astro"
},
"dependencies": {
"@astrojs/sitemap": "^3.7.3",
"@snapotter/shared": "workspace:*",
"astro": "^6.4.7",
"lucide": "^1.18.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"@tailwindcss/vite": "^4.3.1",
"tailwindcss": "^4.3.1",
"typescript": "^5.7.0"
}
}