-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.07 KB
/
package.json
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
49
50
51
52
53
54
{
"name": "nip06-cli",
"version": "1.1.1",
"description": "NIP06 CLI",
"author": {
"email": "[email protected]",
"name": "jaonoctus",
"url": "https://twitter.com/jaonoctus"
},
"homepage": "https://github.com/jaonoctus/nip06-cli",
"repository": {
"type": "git",
"url": "https://github.com/jaonoctus/nip06-cli.git"
},
"keywords": [
"cli",
"nip06",
"nostr",
"bip39",
"bip32",
"bech32"
],
"bin": {
"nip06-cli": "./lib/index.mjs"
},
"files": [
"lib"
],
"license": "MIT",
"scripts": {
"build": "tsup",
"dev": "tsx src/index.ts"
},
"devDependencies": {
"@types/inquirer": "9.0.7",
"@types/inquirer-autocomplete-prompt": "3.0.3",
"@types/node": "20.12.11",
"tsup": "8.0.2",
"tsx": "4.10.0",
"typescript": "5.4.5"
},
"dependencies": {
"@scure/bip39": "1.3.0",
"chalk": "5.3.0",
"commander": "12.0.0",
"fuzzy": "0.1.3",
"inquirer": "9.2.20",
"inquirer-autocomplete-prompt": "3.0.1",
"nip06": "1.0.3"
},
"engines": {
"node": ">=16.4.0"
}
}