-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.03 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.03 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "noskey",
"version": "0.0.65",
"description": "generate nostr key",
"main": "lib/index.js",
"bin": {
"noskey": "bin/noskey.js"
},
"type": "module",
"files": [
"bin/",
"lib/",
"words.json"
],
"scripts": {
"test": "node --test test/*.test.js",
"docs": "node_modules/.bin/jsdoc -c jsdoc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/melvincarvalho/noskey.git"
},
"keywords": [
"nostr"
],
"author": "Melvin Carvalho",
"license": "MIT",
"bugs": {
"url": "https://github.com/melvincarvalho/noskey/issues"
},
"homepage": "https://github.com/melvincarvalho/noskey#readme",
"dependencies": {
"@noble/secp256k1": "^1.7.0",
"@scure/base": "^1.1.1",
"bech32": "^2.0.0",
"bip32": "^4.0.0",
"bitcoinjs-lib": "^6.1.0",
"ecpair": "^2.1.0",
"nostr-tools": "^1.7.4",
"tiny-secp256k1": "^2.2.1",
"tweetnacl": "^1.0.3",
"yargs": "^17.6.2"
},
"devDependencies": {
"docdash": "^2.0.1",
"jsdoc": "^4.0.2"
}
}