-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 814 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 814 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
29
30
31
32
33
34
35
36
37
{
"name": "@estagent/js-tools",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"cli",
"mnemonic",
"bip39",
"random",
"wordlist",
"tools"
],
"author": "estagent <estagent@gmail.com>",
"license": "MIT",
"description": "CLI tools for generating random words and BIP39 mnemonics",
"type": "module",
"dependencies": {
"bip39": "^3.1.0",
"chalk": "^5.4.1",
"random-words": "^2.0.1",
"yargs": "^18.0.0"
},
"bin": {
"mnemonic": "./bin/mnemonic.js",
"random-words": "./bin/random-words.js"
},
"repository": {
"type": "git",
"url": "https://github.com/estagent/js-tools.git"
},
"bugs": {
"url": "https://github.com/estagent/js-tools/issues"
}
}