-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.54 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
{
"name": "ledger-liquid-lib-simple",
"version": "0.3.0",
"description": "Ledger Hardware Wallet Liquid Wrapper Library for simple",
"keywords": [
"Ledger",
"LedgerWallet",
"liquid",
"Elements",
"NanoS",
"Hardware Wallet"
],
"repository": {
"type": "git",
"url": "https://github.com/cryptogarageinc/ledger-liquid-lib-simple"
},
"license": "MIT",
"main": "index.js",
"module": "index.js",
"types": "./src/ledger-liquid-lib.d.ts",
"dependencies": {
"@ledgerhq/hw-transport-node-hid": "^6.28.6",
"@rushstack/ts-command-line": "^4.22.0",
"@types/node": "^20.14.2",
"big-integer": "^1.6.52",
"bs58": "^5.0.0",
"cfd-js-wasm": "github:cryptogarageinc/cfd-js-wasm#semver:^0.4.3",
"ripemd160": "^2.0.2",
"sha.js": "^2.4.11",
"usb": "^2.5.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"@types/usb": "^2.0.5",
"eslint": "^8.56.0",
"eslint-config-google": "*",
"npm-run-all": "^4.1.5",
"run-script-os": "^1.1.6",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-json-schema": "^0.64.0"
},
"scripts": {
"example": "ts-node example.ts",
"pubkey": "ts-node example.ts -dp",
"setauthkey": "ts-node example.ts -a",
"sign": "ts-node sign-tool.ts sign",
"authsig": "ts-node sign-tool.ts getauthsig",
"format": "eslint --ext .js,.ts *.js *.ts src/ --fix",
"eslint_check": "eslint --ext .js,.ts *.js *.ts src/",
"test": "ts-node __test__/test.ts"
}
}