chore(deps): update lockfile and deps

This involves actually moving to Cloudflare Workers' Static Assets (not
to be confused with deprecated Worker Sites) from Pages, alongside adding
a few other dependencies at the devenv.nix side of the things.

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev>
This commit is contained in:
Andrei Jiroh Halili 2025-06-02 21:15:35 +08:00
parent 10e17e7424
commit 48148ba28f
No known key found for this signature in database
GPG key ID: 67BFC91B3DA12BE8
6 changed files with 1559 additions and 1487 deletions

View file

@ -4,9 +4,9 @@
"description": "Personal website for my tildes + Gemini version of blog posts",
"scripts": {
"start": "npm run dev",
"dev": "bash ./bin/localdev.sh",
"build": "bash ./bin/build.sh",
"deploy": "bash ./bin/deploy.sh",
"dev": "wrangler dev --port 8000",
"deploy": "npm run deploy:cf",
"deploy:cf": "wrangler deploy",
"docker:ci": "DOCKER_BUILDKIT=1 docker build -t dock.mau.dev/andreijiroh-dev/website/build-ci:localdev ./docker"
},
"repository": {
@ -21,9 +21,9 @@
},
"homepage": "https://andreijiroh.xyz",
"devDependencies": {
"wrangler": "^3.80.4"
"wrangler": "^4.18.0"
},
"dependencies": {
"@dotenvx/dotenvx": "^1.22.0"
"@dotenvx/dotenvx": "^1.44.1"
}
}