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

View File

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