-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.15 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
{
"name": "@blooo/hw-app-klaytn",
"version": "0.2.0",
"description": "Ledger Hardware Wallet Klaytn Application API",
"keywords": [
"Ledger",
"LedgerWallet",
"Klaytn",
"KLAY",
"NanoS",
"Blue",
"Hardware Wallet"
],
"repository": {
"type": "git",
"url": "https://github.com/blooo-io/hw-app-klaytn"
},
"bugs": {
"url": "https://github.com/blooo-io/hw-app-klaytn/issues"
},
"homepage": "https://github.com/blooo-io/hw-app-klaytn",
"publishConfig": {
"access": "public"
},
"main": "lib/Klaytn.js",
"module": "lib-es/Klaytn.js",
"types": "lib/Klaytn.d.ts",
"license": "Apache-2.0",
"dependencies": {
"@ethersproject/abi": "^5.5.0",
"@ethersproject/rlp": "^5.7.0",
"@helium/address": "^4.6.2",
"@ledgerhq/cryptoassets": "^6.34.0",
"@ledgerhq/errors": "^6.10.2",
"@ledgerhq/hw-transport": "^6.27.4",
"@ledgerhq/hw-transport-mocker": "^6.27.4",
"@ledgerhq/logs": "^6.10.0",
"axios": "^0.26.1",
"bignumber.js": "^9.1.0",
"bip32-path": "^0.4.2",
"caver-js": "^1.9.0"
},
"scripts": {
"clean": "rimraf lib lib-es",
"build": "rimraf lib lib-es && tsc && tsc -m ES6 --outDir lib-es",
"build:kaikas": "tsc && tsc -m ES6 --outDir '../kaikas-pixelplex/ui/lib'",
"build:kaikas-tuto": "tsc && tsc -m ES6 --outDir '../../kaikas-tutorial/src/lib'",
"build:pure-js": "tsc && tsc -m ES6 --outDir '../../stellar-prep/lib'",
"prewatch": "pnpm build",
"watch": "tsc --watch",
"doc": "documentation readme src/** --section=API --pe ts --re ts --re d.ts",
"lint": "eslint ./src --no-error-on-unmatched-pattern --ext .ts,.tsx",
"lint:fix": "pnpm lint --fix",
"test": "jest"
},
"gitHead": "dd0dea64b58e5a9125c8a422dcffd29e5ef6abec",
"devDependencies": {
"@types/jest": "^29.0.2",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"jest": "^29.0.3",
"prettier": "^2.7.1",
"ts-jest": "^29.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
}
}