-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.33 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": "@ledgerhq/hw-app-nuls",
"version": "6.27.12",
"description": "Ledger Hardware Wallet Nuls Application API",
"keywords": [
"Ledger",
"LedgerWallet",
"Nuls",
"xlm",
"NanoS",
"Blue",
"Hardware Wallet"
],
"repository": {
"type": "git",
"url": "https://github.com/LedgerHQ/ledger-live.git"
},
"bugs": {
"url": "https://github.com/LedgerHQ/ledger-live/issues"
},
"homepage": "https://github.com/LedgerHQ/ledger-live/tree/develop/libs/ledgerjs/packages/hw-app-nuls",
"publishConfig": {
"access": "public"
},
"main": "lib/Nuls.js",
"module": "lib-es/Nuls.js",
"types": "lib/Nuls.d.ts",
"license": "Apache-2.0",
"dependencies": {
"@ledgerhq/hw-transport": "^6.28.1",
"base32.js": "^0.1.0",
"sha.js": "^2.3.6",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@ledgerhq/hw-transport-mocker": "^6.27.12",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.4",
"ts-jest": "^28.0.5",
"jest": "^28.1.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"scripts": {
"clean": "rimraf lib lib-es",
"build": "tsc && tsc -m ES6 --outDir lib-es",
"prewatch": "pnpm build",
"watch": "tsc --watch",
"lint": "eslint ./src --no-error-on-unmatched-pattern --ext .ts,.tsx",
"lint:fix": "pnpm lint --fix",
"test": "jest"
}
}