-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.23 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": "@fluent-wallet/hw-app-conflux",
"version": "0.1.1",
"description": "Ledger Hardware Wallet Conflux Application API",
"keywords": [
"Ledger",
"LedgerWallet",
"Conflux",
"cfx",
"NanoS",
"Hardware Wallet"
],
"repository": {
"type": "git",
"url": "https://github.com/Conflux-Chain/hw-app-conflux"
},
"bugs": {
"url": "https://github.com/Conflux-Chain/hw-app-conflux/issues"
},
"homepage": "https://github.com/Conflux-Chain/hw-app-conflux",
"publishConfig": {
"access": "public"
},
"main": "lib/Conflux.js",
"module": "lib-es/Conflux.js",
"types": "lib/Conflux.d.ts",
"files": [
"lib/",
"lib-es/",
"src/",
"CHANGELOG.md",
"README.md"
],
"license": "Apache-2.0",
"dependencies": {
"@ledgerhq/hw-transport": "^6.31.4",
"bip32-path": "^0.4.2"
},
"scripts": {
"clean": "rm -rf lib/",
"build": "tsc -p tsconfig.json && tsc -m ES6 --outDir lib-es",
"changeset:publish": "changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@ledgerhq/hw-transport-mocker": "^6.29.4",
"js-conflux-sdk": "^2.4.11",
"ts-jest": "^27.1.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.2",
"vitest": "^2.1.5"
}
}