beep boop

This commit is contained in:
2026-06-03 14:45:49 -04:00
parent a5dabe7faf
commit 1bc9307c29
4 changed files with 344 additions and 433 deletions

741
bun.lock

File diff suppressed because it is too large Load Diff

View File

@@ -7,15 +7,15 @@
"browser-ext" "browser-ext"
], ],
"scripts": { "scripts": {
"dev": "pnpm --filter web dev", "dev": "bun run --cwd web dev",
"build": "pnpm --filter web build", "build": "bun run --cwd web build",
"build:ext": "pnpm --filter @kordant/browser-ext build", "build:ext": "bun run --cwd browser-ext build",
"test": "pnpm --filter web test", "test": "bun run --cwd web test",
"test:ext": "pnpm --filter @kordant/browser-ext test", "test:ext": "bun run --cwd browser-ext test",
"lint": "pnpm --filter web lint", "lint": "bun run --cwd web lint",
"lint:ext": "pnpm --filter @kordant/browser-ext lint", "lint:ext": "bun run --cwd browser-ext lint",
"db:migrate": "pnpm --filter web db:migrate", "db:migrate": "bun run --cwd web db:migrate",
"db:seed": "pnpm --filter web db:seed" "db:seed": "bun run --cwd web db:seed"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^25.6.0", "@types/node": "^25.6.0",
@@ -27,5 +27,5 @@
"engines": { "engines": {
"node": ">=22.0.0" "node": ">=22.0.0"
}, },
"packageManager": "pnpm@9.0.0" "packageManager": "bun@1.3.8"
} }

View File

@@ -17,6 +17,7 @@
"dependencies": { "dependencies": {
"@libsql/client": "^0.17.3", "@libsql/client": "^0.17.3",
"@sentry/solidstart": "^10.56.0", "@sentry/solidstart": "^10.56.0",
"@solidjs/meta": "^0.29.4",
"@solidjs/router": "^0.15.0", "@solidjs/router": "^0.15.0",
"@solidjs/start": "2.0.0-alpha.2", "@solidjs/start": "2.0.0-alpha.2",
"@solidjs/vite-plugin-nitro-2": "^0.1.0", "@solidjs/vite-plugin-nitro-2": "^0.1.0",
@@ -38,14 +39,19 @@
"puppeteer": "^25.1.0", "puppeteer": "^25.1.0",
"resend": "^6.12.4", "resend": "^6.12.4",
"solid-js": "^1.9.5", "solid-js": "^1.9.5",
"pino": "^10.3.1",
"stripe": "^22.2.0", "stripe": "^22.2.0",
"three": "^0.184.0", "three": "^0.184.0",
"twilio": "^6.0.2",
"valibot": "^1.4.1", "valibot": "^1.4.1",
"vite": "^7.0.0" "vite": "^7.0.0",
"ws": "^8.21.0",
"zod": "^3.25.76"
}, },
"engines": { "engines": {
"node": ">=22" "node": ">=22"
}, },
"packageManager": "bun@1.3.8",
"devDependencies": { "devDependencies": {
"@tailwindcss/vite": "^4.0.7", "@tailwindcss/vite": "^4.0.7",
"tailwindcss": "^4.0.7" "tailwindcss": "^4.0.7"

View File

@@ -1,8 +0,0 @@
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"framework": "solidstart",
"buildCommand": "npm run build",
"installCommand": "bun install",
"outputDirectory": ".output/public",
"regions": ["iad1"]
}