super_ball/thrower_daemon/package.json

62 lines
1.3 KiB
JSON

{
"name": "superball-thrower-daemon",
"version": "1.0.0",
"description": "A standalone Node.js daemon implementation of the Superball Thrower for privacy-focused NOSTR event routing",
"main": "daemon.js",
"bin": {
"superball-thrower": "./daemon.js"
},
"scripts": {
"start": "node daemon.js start",
"init": "node daemon.js init",
"status": "node daemon.js status",
"test-relays": "node daemon.js test-relays",
"install-service": "./install.sh",
"uninstall-service": "./install.sh uninstall"
},
"keywords": [
"nostr",
"superball",
"privacy",
"routing",
"daemon",
"nip-44",
"encryption",
"relay",
"thrower"
],
"author": "Superball Project",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://git.laantungir.net/laantungir/super_ball.git"
},
"homepage": "https://git.laantungir.net/laantungir/super_ball",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"nostr-tools": "^2.7.0",
"ws": "^8.18.0"
},
"devDependencies": {
"nodemon": "^3.0.1"
},
"optionalDependencies": {},
"peerDependencies": {},
"files": [
"daemon.js",
"config.example.json",
"superball-thrower.service",
"install.sh",
"README.md"
],
"os": [
"linux",
"darwin"
],
"cpu": [
"x64",
"arm64"
]
}