-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
97 lines (97 loc) · 2.34 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "adamant-api",
"version": "2.4.0",
"description": "JavaScript API library for the ADAMANT Blockchain",
"keywords": [
"adm",
"adamant",
"blockchain",
"messenger",
"chat",
"decentralized messenger",
"anonymous messenger",
"secure messenger",
"wallet",
"crypto wallet",
"private keys",
"communication",
"decentralized",
"decentralization",
"anonymous",
"anonymity",
"secure",
"encrypted",
"encryption",
"crypto",
"cryptocurrency",
"bitcoin",
"ethereum"
],
"homepage": "https://github.com/Adamant-im/adamant-api-jsclient#readme",
"bugs": {
"url": "https://github.com/Adamant-im/adamant-api-jsclient/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Adamant-im/adamant-api-jsclient.git"
},
"license": "GPL-3.0",
"author": "ADAMANT Foundation <[email protected]> (https://adamant.im)",
"main": "dist/index.js",
"src": "src/index.ts",
"types": "dist/index.d.ts",
"files": [
"dist/",
"types/"
],
"scripts": {
"test": "jest",
"lint": "gts lint",
"prepare": "husky install",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"dependencies": {
"@liskhq/lisk-cryptography": "4.1.0",
"axios": "^1.7.2",
"bignumber.js": "^9.1.2",
"bip39": "^3.1.0",
"bitcoinjs-lib": "^6.1.5",
"bytebuffer": "^5.0.1",
"coininfo": "^5.2.1",
"ecpair": "^2.1.0",
"ed2curve": "^0.3.0",
"ethereumjs-util": "^7.1.5",
"hdkey": "^2.1.0",
"pbkdf2": "^3.1.2",
"socket.io-client": "^4.7.5",
"sodium-browserify-tweetnacl": "^0.2.6",
"tiny-secp256k1": "^2.2.3",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/bytebuffer": "^5.0.49",
"@types/hdkey": "^2.0.3",
"@types/ed2curve": "^0.2.4",
"@types/jest": "^29.5.12",
"@types/node": "20.12.13",
"@types/pbkdf2": "^3.1.2",
"eslint": "^8.54.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-jest": "^28.5.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.4",
"gts": "^5.3.0",
"typescript": "~5.1.0"
},
"publishConfig": {
"access": "public"
}
}