-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.84 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
{
"name": "@blooo/hw-app-concordium",
"type": "module",
"version": "1.0.0",
"description": "Ledger Hardware Wallet Concordium Application API",
"keywords": [
"Ledger",
"LedgerWallet",
"CCD",
"Concordium",
"NanoS+",
"NanoX",
"Flex",
"Stax",
"Blue",
"Hardware Wallet"
],
"repository": {
"type": "git",
"url": "https://github.com/blooo-io/hw-app-concordium.git"
},
"bugs": {
"url": "https://github.com/blooo-io/hw-app-concordium/issues"
},
"homepage": "https://github.com/blooo-io/hw-app-concordium",
"publishConfig": {
"access": "public"
},
"main": "lib/Concordium.js",
"module": "lib/Concordium.js",
"types": "lib/Concordium.d.ts",
"license": "Apache-2.0",
"dependencies": {
"@concordium/common-sdk": "^9.5.3",
"@concordium/web-sdk": "^9.0.0",
"@ledgerhq/errors": "^6.19.1",
"@ledgerhq/hw-transport": "^6.31.4",
"bip32-path": "^0.4.2",
"cbor": "^10.0.3",
"hi-base32": "^0.5.1",
"js-sha512": "^0.8.0",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@ledgerhq/hw-transport-mocker": "^6.29.4",
"@types/jest": "^29.5.10",
"@types/node": "^20.8.10",
"documentation": "14.0.2",
"jest": "^29.7.0",
"rimraf": "^4.4.1",
"source-map-support": "^0.5.21",
"ts-jest": "^29.1.1",
"ts-node": "^10.4.0"
},
"scripts": {
"clean": "rimraf lib lib-es",
"build": "tsc && tsc -m ES6 --outDir lib-es",
"prewatch": "pnpm build",
"watch": "tsc --watch",
"watch:es": "tsc --watch -m ES6 --outDir lib-es",
"doc": "documentation readme src/** --section=API --pe ts --re ts --re d.ts",
"lint": "eslint ./src --no-error-on-unmatched-pattern --ext .ts,.tsx --cache",
"lint:fix": "pnpm lint --fix",
"test": "jest",
"unimported": "unimported"
},
"gitHead": "dd0dea64b58e5a9125c8a422dcffd29e5ef6abec"
}