Adding package.json so npm i will work

You'd think i'd do this before I commented on Nostr ;)
This commit is contained in:
Stephen Vanderwarker 2024-12-24 18:05:57 -05:00
parent ac3b5d6cdd
commit 1be448ca73

19
package.json Normal file

@ -0,0 +1,19 @@
{
"name": "nostr-binance-integration",
"version": "1.0.0",
"description": "A Node.js script that integrates Binance WebSocket data with Nostr events.",
"main": "index.js",
"scripts": {
"start": "node index.js"
},
"author": "npub1lqulkec5tx98yv7snk759tuzejtcr5865468fuvyrtuskhynpyush5qaf3",
"license": "MIT",
"dependencies": {
"ws": "^8.13.0",
"crypto": "^1.0.1",
"elliptic": "^6.5.4",
"safe-buffer": "^5.2.1",
"bip-schnorr": "^1.0.0"
}
}