-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 907 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 907 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"name": "nth",
"version": "0.0.1",
"description": "A program that turns bitcoin blocks into nostr-based hyperjump objects for the Nakamoto Thermodynamic Hypertransit in cyberspace.",
"main": "index.js",
"repository": "https://github.com/arkin0x/nth",
"author": "arkin0x <npub1arkn0xxxll4llgy9qxkrncn3vc4l69s0dz8ef3zadykcwe7ax3dqrrh43w>",
"license": "Creative Commons Attribution-ShareAlike 4.0 International: https://creativecommons.org/licenses/by-sa/4.0/legalcode",
"private": false,
"type": "module",
"dependencies": {
"axios": "^1.7.2",
"dotenv": "^16.4.5",
"nostr-tools": "^1.17.0",
"ws": "^8.17.0"
},
"devDependencies": {
"@types/node": "^20.13.0",
"@types/ws": "^8.5.10",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"scripts": {
"build": "tsc",
"run": "node ./dist/index.js",
"start": "npm run build && npm run run"
}
}