headplane/package.json

115 lines
2.9 KiB
JSON
Raw Normal View History

{
"name": "heady",
"version": "1.0.0",
"description": "🤠 Heady - Strategic VPN management that's actually awesome to use!",
2024-03-25 17:50:58 -04:00
"type": "module",
"private": true,
2024-03-25 17:50:58 -04:00
"scripts": {
2025-04-04 16:06:22 -04:00
"preinstall": "npx only-allow pnpm",
"dev": "HEADY_LOAD_ENV_OVERRIDES=true HEADY_CONFIG_PATH=./config.example.yaml astro dev --host",
"start": "astro dev --host",
"build": "astro build",
"preview": "astro preview",
"check": "astro check",
"typecheck": "astro check && tsc --noEmit",
"format": "biome format --write .",
"lint": "biome lint --apply .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
2024-03-25 17:50:58 -04:00
},
"dependencies": {
"@astrojs/node": "^8.3.4",
"@astrojs/react": "^3.6.3",
"@astrojs/tailwind": "^5.1.2",
2025-05-29 11:55:30 -04:00
"@kubernetes/client-node": "^1.3.0",
2025-08-21 11:39:51 -04:00
"@libsql/client": "0.15.12",
"@radix-ui/react-avatar": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.16",
"@radix-ui/react-dropdown-menu": "^2.1.17",
"@radix-ui/react-select": "^2.3.0",
"@radix-ui/react-separator": "^1.1.9",
"@radix-ui/react-slot": "^1.2.5",
"@radix-ui/react-switch": "^1.3.0",
"@radix-ui/react-tabs": "^1.1.14",
"@radix-ui/react-tooltip": "^1.2.9",
2025-05-29 09:45:47 -04:00
"@shopify/lang-jsonc": "^1.0.1",
"alpinejs": "^3.14.1",
2025-05-28 18:11:59 -04:00
"arktype": "^2.1.20",
"astro": "^4.16.18",
"chart.js": "^4.4.7",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
2025-08-21 11:39:51 -04:00
"dotenv": "17.2.1",
"drizzle-orm": "0.44.4",
"guacamole-lite": "^1.2.0",
"ioredis": "^5.11.1",
"ip-address": "^9.0.5",
"is-cidr": "^5.0.3",
2025-08-28 22:49:55 -04:00
"jose": "6.1.0",
"lucide": "^0.456.0",
"lucide-react": "^0.456.0",
2025-05-28 18:11:59 -04:00
"mime": "^4.0.7",
2025-08-28 22:49:55 -04:00
"openid-client": "6.7.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
2025-08-21 11:39:51 -04:00
"tailwind-merge": "3.3.1",
"tailwindcss": "^3.4.14",
"ulidx": "2.4.1",
2025-08-21 11:39:51 -04:00
"undici": "7.14.0",
"ws": "^8.18.2",
2025-08-21 11:39:51 -04:00
"yaml": "2.8.1"
2024-03-25 17:50:58 -04:00
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
2025-08-19 17:52:26 -04:00
"@biomejs/biome": "^2.2.0",
"@tailwindcss/vite": "^4.1.12",
"@types/node": "^24.3.0",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^2.1.8",
2025-08-21 11:39:51 -04:00
"drizzle-kit": "^0.31.4",
"js-yaml": "^4.1.0",
2025-08-21 11:39:51 -04:00
"lefthook": "^1.12.3",
"postcss": "^8.5.6",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.9.2",
2025-08-21 11:39:51 -04:00
"vite": "npm:rolldown-vite@7.1.4",
"vite-tsconfig-paths": "^5.1.4",
"vitepress": "next",
"vitest": "^3.1.3"
},
2025-04-04 16:06:22 -04:00
"packageManager": "pnpm@10.4.0",
2024-03-25 17:50:58 -04:00
"engines": {
"node": ">=20.0.0",
2025-04-04 16:06:22 -04:00
"pnpm": ">=10.4 <11"
},
"pnpm": {
2025-06-22 16:59:21 -04:00
"supportedArchitectures": {
"os": [
"current",
"linux"
],
"cpu": [
"x64",
"arm64"
]
2025-06-22 16:59:21 -04:00
},
"onlyBuiltDependencies": [
"@biomejs/biome",
"@tailwindcss/oxide",
"better-sqlite3",
"esbuild",
"lefthook"
],
"overrides": {
"mime": "^1.6.0"
}
2024-03-25 17:50:58 -04:00
}
}