personal-site/package.json
badbl0cks 1fbcbf772a
All checks were successful
Build And Deploy / build-and-deploy (push) Successful in 1m22s
Enable WireGuard service, change HTTPFetchClient to use wireguard proxy, and add required env vars
Add WireGuard-related env variables to .env.example (addresses,
keys, endpoint, DNS)
Resolve WIREGUARD_ENDPOINT_HOST to WIREGUARD_ENDPOINT_IP in
cicd/scripts/deploy.sh and write it to .env, failing if unresolved
Un-comment and enable the wireguard service in docker-compose.yml
Remove an obsolete commented workflow snippet
2026-02-07 17:44:58 -08:00

46 lines
1.2 KiB
JSON

{
"name": "badblocks-personal-site",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "bun run ./dist/server/entry.mjs",
"check": "astro check",
"build-only": "astro build",
"build": "astro check && astro build",
"build-remote": "astro check && astro build --remote",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"@astrojs/alpinejs": "^0.4.9",
"@astrojs/check": "^0.9.6",
"@astrojs/db": "^0.18.3",
"@astrojs/node": "^9.5.2",
"@astrojs/partytown": "^2.1.4",
"@astrojs/sitemap": "^3.7.0",
"@astrojs/ts-plugin": "^1.10.6",
"@cap.js/server": "^4.0.5",
"@cap.js/widget": "^0.1.34",
"@nurodev/astro-bun": "^2.1.2",
"@types/alpinejs": "^3.13.11",
"alpinejs": "^3.15.5",
"android-sms-gateway": "^3.0.0",
"astro": "^5.16.15",
"astro-htmx": "^1.0.6",
"htmx.org": "^2.0.8",
"iconify-icon": "^3.0.2",
"ofetch": "^1.5.1",
"otplib": "^12.0.1",
"typescript": "^5.9.3",
"undici": "^7.21.0",
"validator": "^13.15.26"
},
"devDependencies": {
"@types/bun": "^1.3.6",
"@types/validator": "^13.15.10",
"doiuse": "^6.0.6",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1"
}
}