-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
41 lines (41 loc) · 976 Bytes
/
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
{
"name": "hive-tx",
"version": "6.0.6",
"description": "Create, sign, and broadcast transactions on Hive blockchain",
"type": "module",
"module": "./index.js",
"exports": "./index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:browser": "webpack --config webpack.config.cjs --mode=production"
},
"keywords": [
"hive",
"tx",
"transaction",
"sign",
"broadcast",
"blockchain",
"hive-tx"
],
"author": "Mahdi Yari",
"license": "MIT",
"dependencies": {
"@noble/ciphers": "^1.2.1",
"@noble/curves": "^1.8.1",
"@noble/hashes": "^1.7.1",
"axios": "^1.7.9",
"bs58": "6.0.0"
},
"homepage": "https://github.com/mahdiyari/hive-tx-js",
"repository": {
"type": "git",
"url": "https://github.com/mahdiyari/hive-tx-js.git"
},
"devDependencies": {
"process": "0.11.10",
"standard": "17.1.0",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
}
}