site init (barrett)

This commit is contained in:
Harivansh Rathi 2026-03-25 15:44:35 -04:00
parent f05f441dee
commit d5db569030
15 changed files with 5862 additions and 0 deletions

24
site/package.json Normal file
View file

@ -0,0 +1,24 @@
{
"name": "deskctl-site",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"check": "astro check",
"format:check": "prettier --check 'src/**/*.{astro,mdx,css}' astro.config.mjs"
},
"dependencies": {
"@astrojs/mdx": "^4.3.14",
"@astrojs/vercel": "^9.0.5",
"astro": "^5.18.1"
},
"devDependencies": {
"@astrojs/check": "^0.9.8",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"typescript": "^5.9.3"
}
}