bostr/package.json
Yonle 9b6160fb66 Release: 2.0.5
Recoding, improvements, and temporary features removal.

What's new?
===========
- Dependencies bump
- Use of requesting different subscription ID rather than using
  subscription ID from client. Fixes late-close problems.
- Filter validation is now checked with nostr-tools instead, Fixes issue
  with conflicting client that puts more than single filter in a single
  `REQ` subscription.
- Reworked session code.

What's removed?
===============
- EOSE Timeout
- Cache to local relay (unreliable)
- [Temporary Removal] Orphan session

Signed-off-by: Yonle <yonle@lecturify.net>
2024-02-18 00:42:23 +07:00

34 lines
696 B
JSON

{
"name": "bostr",
"version": "2.0.5",
"description": "Nostr relay bouncer",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Yonle/bostr.git"
},
"keywords": [
"nostr",
"bouncer",
"websocket",
"proxy"
],
"author": "Yonle <yonle@lecturify.net>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/Yonle/bostr/issues"
},
"homepage": "https://github.com/Yonle/bostr#readme",
"dependencies": {
"nostr-tools": "^2.2.1",
"ws": "^8.16.0"
},
"engines": {
"node": ">=16"
}
}