Files
astro-website/site/package.json
Santhosh Janardhanan af112a713c
Some checks failed
ci / site (push) Has been cancelled
Initial commit - but way too late.
2026-02-10 00:22:18 -05:00

33 lines
756 B
JSON

{
"name": "site",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"fetch-content": "tsx scripts/fetch-content.ts",
"typecheck": "astro check",
"format": "prettier -w .",
"format:check": "prettier -c .",
"test": "vitest run",
"astro": "astro"
},
"dependencies": {
"@astrojs/sitemap": "^3.7.0",
"astro": "^5.17.1",
"rss-parser": "^3.13.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@astrojs/check": "^0.9.6",
"@types/node": "^25.2.2",
"dotenv": "^17.2.4",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}