Initial Commit

This commit is contained in:
2026-05-19 11:43:03 +02:00
commit 40a2841361
14 changed files with 3382 additions and 0 deletions

31
package.json Normal file
View File

@@ -0,0 +1,31 @@
{
"name": "xpub-backend",
"version": "1.0.0",
"description": "",
"license": "ISC",
"author": "",
"type": "module",
"main": "index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@bitauth/libauth": "^3.0.0",
"@fastify/cors": "^11.2.0",
"@xo/stack": "file:../stack",
"@xocash/stack": "file:../stack/packages/stack",
"dbug": "^0.4.2",
"fastify": "^5.8.5",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/debug": "^4.1.13",
"@types/node": "^25.8.0",
"debug": "^4.4.3",
"tsx": "^4.22.1",
"typescript": "^6.0.3"
}
}