-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
65 lines (65 loc) · 1.62 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "adamant-console",
"version": "3.0.0",
"description": "Console API and JSON-RPC for interacting with ADAMANT Blockchain",
"main": "lib/api/index.js",
"type": "module",
"bin": {
"adm": "./bin/adamant.js"
},
"engines": {
"node": ">=14"
},
"author": "ADAMANT Foundation <[email protected]> (https://adamant.im)",
"license": "GPL-3.0",
"scripts": {
"format": "prettier . --write",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npx eslint -f visualstudio .",
"lint:fix": "npx eslint -f visualstudio --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Adamant-im/adamant-console.git"
},
"bugs": {
"url": "https://github.com/Adamant-im/adamant-console/issues"
},
"homepage": "https://github.com/Adamant-im/adamant-console#readme",
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"prettier": "3.3.2"
},
"dependencies": {
"@stablelib/utf8": "^1.0.2",
"adamant-api": "^2.4.0",
"bitcore-mnemonic": "^10.0.36",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"ed2curve": "^0.3.0",
"jayson": "^4.1.0",
"joi": "^17.13.1",
"jsonminify": "^0.4.2",
"leven": "^4.0.0",
"semver": "^7.6.2",
"shell-quote": "^1.8.1",
"sodium-browserify-tweetnacl": "^0.2.6",
"tweetnacl": "^1.0.3"
},
"keywords": [
"adm",
"adamant",
"blockchain",
"messenger",
"wallet",
"secure",
"encryption",
"crypto",
"cryptocurrency",
"CLI",
"console"
]
}