Initial Mebbling hub implementation

This commit is contained in:
2026-07-19 00:29:30 +08:00
commit e6ebdb0576
41 changed files with 2571 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
{
"name": "mebbling",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"dev": "next dev",
"build": "HUB_BUILD=1 next build",
"start": "next start",
"worker": "tsx worker/index.ts",
"test": "tsx --test tests/**/*.test.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^3.0.3",
"better-sqlite3": "^12.11.1",
"jose": "^6.2.3",
"next": "^15.5.20",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"tsx": "^4.23.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^26.1.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"typescript": "5.8.2"
}
}