-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.25 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
{
"name": "@aioha/aioha",
"version": "1.5.5",
"description": "All-In-One Hive Authentication API",
"main": "build/index.js",
"types": "build/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"webpack": "webpack",
"clean": "rm -r dist/* build/*",
"prepublish": "pnpm run clean; pnpm run build; pnpm run webpack; cp src/lib/hivesigner-cb.ts dist/hivesigner-cb.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"aioha",
"hive",
"blockchain",
"authentication"
],
"author": "techcoderx",
"license": "MIT",
"homepage": "https://aioha.dev",
"repository": {
"url": "https://github.com/aioha-hive/aioha"
},
"bugs": {
"url": "https://github.com/aioha-hive/aioha/issues"
},
"files": [
"src",
"dist",
"build",
"LICENSE",
"README.md"
],
"devDependencies": {
"@types/uuid": "^9.0.8",
"buffer": "^6.0.3",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@engrave/ledger-app-hive": "^3.5.6",
"@hiveio/dhive": "^1.2.8",
"@ledgerhq/hw-transport-webusb": "^6.29.4",
"hive-tx": "^5.4.6",
"js-md5": "^0.8.3",
"keychain-sdk": "^0.6.1"
}
}