Files
cameleer-website/package.json
hsiegeln 04a1bd0aaf Add CI lint configs (html-validate, linkinator), fix nav a11y and URL routing
- .htmlvalidate.json with relaxed rules for design-system inline styles
- linkinator.config.json skipping mail, external auth/platform origins
- Fix lint:html npm script quoting for Windows-shell compatibility
- Switch astro build.format to 'directory' so /pricing resolves without MultiViews
- trailingSlash: 'ignore' lets both /pricing and /pricing/ work naturally
- Add aria-label to both <nav> landmarks (Primary, Footer) to satisfy html-validate

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-24 17:24:21 +02:00

35 lines
857 B
JSON

{
"name": "cameleer-website",
"version": "0.0.1",
"type": "module",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"test": "vitest run",
"test:watch": "vitest",
"lint:html": "html-validate \"dist/**/*.html\"",
"lint:links": "linkinator dist --recurse --silent",
"lh": "lhci autorun"
},
"dependencies": {
"@astrojs/tailwind": "^5.1.0",
"@fontsource/dm-sans": "^5.0.21",
"@fontsource/jetbrains-mono": "^5.0.21",
"astro": "^5.0.0",
"tailwindcss": "^3.4.0"
},
"devDependencies": {
"@lhci/cli": "^0.14.0",
"@types/node": "^20.11.0",
"html-validate": "^8.18.0",
"lightningcss": "^1.27.0",
"linkinator": "^6.1.0",
"typescript": "^5.4.0",
"vitest": "^1.6.0"
}
}