-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.09 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
{
"name": "hw-app-kda",
"version": "0.1.0",
"description": "Ledger Hardware Wallet Kadena Application API",
"license": "Apache-2.0",
"keywords": [
"Ledger",
"LedgerWallet",
"kda",
"Kadena",
"NanoS",
"Blue",
"Hardware Wallet"
],
"repository": {
"type": "git",
"url": "git+https://github.com/obsidiansystems/hw-app-kda.git"
},
"bugs": {
"url": "https://github.com/obsidiansystems/hw-app-kda/issues"
},
"homepage": "https://github.com/obsidiansystems/hw-app-kda#readme",
"publishConfig": {
"access": "public"
},
"main": "lib/Kadena.js",
"bin": {
"kda-cli": "main.js"
},
"module": "lib-es/Kadena.js",
"types": "lib/Kadena.d.ts",
"dependencies": {
"@ledgerhq/hw-transport": "^6.3.0",
"blake2b": "^2.1.4",
"hw-app-alamgu": "git+https://github.com/alamgu/hw-app-alamgu#6822e963dd4a92d50929bd8a3b750c90973504b3"
},
"scripts": {
"build": "tsc && tsc -m ES6 --outDir lib-es",
"prepare": "tsc && tsc -m ES6 --outDir lib-es"
},
"devDependencies": {
"@types/node": "^16.10.3",
"typescript": "^4.4.3"
}
}