-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
91 lines (91 loc) · 2.74 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@leapwallet/leap-keychain",
"version": "0.3.5",
"description": "A javascript library for crypto key management",
"scripts": {
"test:coverage": "nyc mocha",
"test": "mocha",
"lint:prettier": "yarn prettier .",
"lint:prettier:check": "yarn lint:prettier -c",
"lint:prettier:fix": "yarn lint:prettier -w",
"lint:eslint": "eslint .",
"lint:eslint:check": "yarn lint:eslint",
"lint:eslint:fix": "yarn lint:eslint --fix",
"lint:tsc": "tsc --noEmit",
"lint:typedoc": "typedoc src/index.ts --includeVersion --readme none --treatWarningsAsErrors",
"lint:check": "yarn lint:eslint:check && yarn lint:prettier:check && yarn lint:tsc && yarn lint:typedoc",
"lint:fix": "yarn lint:eslint:fix && yarn lint:prettier:fix && yarn lint:tsc && yarn lint:typedoc",
"doc": "typedoc",
"doc:build": "yarn doc",
"doc:watch": "yarn doc --watch",
"prepublish": "yarn build",
"build": "tsc -p tsconfig-browser.json && tsc -p tsconfig-node.json"
},
"types": "dist/browser/index.d.ts",
"license": "MIT",
"repository": "leapwallet/leap-keychain",
"keywords": [
"leap wallet"
],
"engines": {
"node": "18"
},
"author": "Leap Wallet <admin@leapwallet.io> (https://leapwallet.io)",
"bugs": "https://github.com/leapwallet/leap-keychain/issues",
"homepage": "https://github.com/leapwallet/leap-keychain#readme",
"files": [
"dist/browser/",
"dist/node/"
],
"main": "dist/node/index.js",
"browser": "dist/browser/index.js",
"dependencies": {
"@ethersproject/bytes": "5.7.0",
"@ethersproject/hdnode": "5.7.0",
"@ethersproject/wallet": "5.7.0",
"@noble/ciphers": "0.5.3",
"@noble/hashes": "1.1.5",
"@noble/secp256k1": "1.7.0",
"@scure/base": "1.1.6",
"@scure/bip32": "1.1.1",
"@scure/btc-signer": "^1.4.0",
"base64-js": "1.5.1",
"bech32": "2.0.0",
"bip32": "2.0.6",
"bip39": "3.0.4",
"cosmjs-types": "0.8.0",
"ethereumjs-util": "7.1.5",
"typedi": "0.10.0",
"uuid": "9.0.0"
},
"devDependencies": {
"@types/crypto-js": "4.1.1",
"@types/expect.js": "^0.3.32",
"@types/jest": "28.1.4",
"@types/mocha": "^10.0.9",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "8.11.0",
"@typescript-eslint/parser": "8.11.0",
"eslint": "9.13.0",
"expect.js": "0.3.1",
"mocha": "10.7.3",
"nyc": "17.1.0",
"prettier": "2.5.1",
"ts-node": "10.9.2",
"typedoc": "0.22.17",
"typedoc-plugin-missing-exports": "1.0.0",
"typescript": "4.7.3"
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"jsxSingleQuote": true,
"trailingComma": "all"
},
"resolutions": {
"protobufjs": "6.11.4",
"semver": "7.6.0",
"braces": "3.0.3",
"secp256k1": "4.0.4"
}
}