public commit

This commit is contained in:
dswbx
2024-11-16 12:01:47 +01:00
commit 90f80c4280
582 changed files with 49291 additions and 0 deletions

19
examples/sw/package.json Normal file
View File

@@ -0,0 +1,19 @@
{
"name": "sw",
"private": true,
"scripts": {
"dev": "vite dev",
"db": "turso dev --db-file test.db",
"bknd": "bknd run --db-url http://localhost:8080",
"bknd:local": "bknd run --db-url file:test.db",
"db:check": "sqlite3 test.db \"PRAGMA wal_checkpoint(FULL);\""
},
"type": "module",
"dependencies": {
"hono": "^4.6.9",
"bknd": "workspace:*"
},
"devDependencies": {
"vite": "^5.4.10"
}
}