-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
109 lines (109 loc) · 3.15 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@leapwallet/leap-keychain",
"version": "0.2.4",
"description": "A javascript library for crypto key management",
"scripts": {
"test": "jest",
"lint:prettier": "prettier . --ignore-path .gitignore",
"lint:prettier:check": "yarn lint:prettier -c",
"lint:prettier:fix": "yarn lint:prettier -w",
"lint:eslint": "eslint . --ignore-path .gitignore",
"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",
"test:coverage": "jest --coverage"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
]
},
"types": "dist/browser/src/index.d.ts",
"license": "MIT",
"repository": "leapwallet/leap-keychain",
"keywords": [
"leap wallet"
],
"engines": {
"node": "16"
},
"author": "Leap Wallet <[email protected]> (https://leapwallet.io)",
"bugs": "https://github.com/leapwallet/leap-keychain/issues",
"homepage": "https://github.com/leapwallet/leap-keychain#readme",
"files": [
"dist/browser/src/",
"dist/node/src/"
],
"main": "dist/node/src/index.js",
"browser": "dist/browser/src/index.js",
"dependencies": {
"@ethersproject/bytes": "5.7.0",
"@ethersproject/hdnode": "5.7.0",
"@ethersproject/wallet": "5.7.0",
"@noble/hashes": "1.1.5",
"@noble/secp256k1": "1.7.0",
"@scure/bip32": "1.1.1",
"base64-js": "1.5.1",
"bech32": "2.0.0",
"bip32": "2.0.6",
"bip39": "3.0.4",
"cosmjs-types": "0.6.1",
"crypto-js": "4.1.1",
"ethereumjs-util": "7.1.5",
"typedi": "0.10.0",
"uuid": "9.0.0"
},
"devDependencies": {
"@types/crypto-js": "4.1.1",
"@types/jest": "28.1.4",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "5.9.1",
"@typescript-eslint/parser": "5.9.1",
"eslint": "8.6.0",
"jest": "28.1.2",
"prettier": "2.5.1",
"ts-jest": "28.0.5",
"typedoc": "0.22.17",
"typedoc-plugin-missing-exports": "1.0.0",
"typescript": "4.7.3"
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"jsxSingleQuote": true,
"trailingComma": "all"
},
"eslintConfig": {
"env": {
"es6": true,
"jest": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 6
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-namespace": "off"
}
}
}