mirror of
https://github.com/Routstr/routstrd.git
synced 2026-07-30 15:46:14 +00:00
38 lines
998 B
JSON
38 lines
998 B
JSON
{
|
|
"name": "routstrd",
|
|
"version": "0.3.1",
|
|
"module": "src/index.ts",
|
|
"type": "module",
|
|
"private": false,
|
|
"bin": {
|
|
"routstrd": "./dist/index.js"
|
|
},
|
|
"scripts": {
|
|
"start": "bun src/index.ts start",
|
|
"monitor": "bun src/index.ts monitor",
|
|
"lint": "tsc --noEmit",
|
|
"test": "bun test",
|
|
"build": "mkdir -p dist/daemon && bun build src/index.ts --target=bun --outfile=dist/index.js && bun build src/daemon/index.ts --target=bun --outfile=dist/daemon/index.js",
|
|
"prepublishOnly": "bun run build"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest",
|
|
"@types/qrcode": "^1.5.6"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5"
|
|
},
|
|
"dependencies": {
|
|
"@cashu/cashu-ts": "^4.3.0",
|
|
"@routstr/sdk": "^0.3.9",
|
|
"applesauce-core": "^5.1.0",
|
|
"applesauce-relay": "^5.1.0",
|
|
"applesauce-wallet-connect": "^6.0.0",
|
|
"commander": "^14.0.2",
|
|
"nostr-tools": "^2.12.0",
|
|
"qrcode": "^1.5.4",
|
|
"rxjs": "^7.8.1",
|
|
"zustand": "^5.0.5"
|
|
}
|
|
}
|