-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
64 lines (64 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
55
56
57
58
59
60
61
62
63
64
{
"name": "@tallyho/hd-keyring",
"author": "Matt Luongo <[email protected]>",
"version": "0.6.0-alpha",
"license": "GPL-3.0",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "dts watch",
"build": "dts build",
"test": "dts test",
"lint": "eslint . --ext ts",
"lint:fix": "eslint . --fix --ext ts",
"prepare": "dts build",
"size": "size-limit",
"analyze": "size-limit --why"
},
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "dts lint"
}
},
"module": "dist/hd-keyring.esm.js",
"size-limit": [
{
"path": "dist/hd-keyring.cjs.production.min.js",
"limit": "250 KB"
},
{
"path": "dist/hd-keyring.esm.js",
"limit": "250 KB"
}
],
"devDependencies": {
"@ethersproject/transactions": "5.6.1",
"@size-limit/preset-small-lib": "^5.0.3",
"@thesis-co/eslint-config": "^0.1.0",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"dts-cli": "^0.19.2",
"husky": "^7.0.2",
"size-limit": "^5.0.3",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
},
"dependencies": {
"@ethersproject/abstract-provider": "5.6.1",
"@ethersproject/abstract-signer": "5.6.1",
"@ethersproject/bytes": "5.6.1",
"@ethersproject/hdnode": "5.6.1",
"@ethersproject/keccak256": "5.6.1",
"@ethersproject/strings": "5.6.1",
"@ethersproject/wallet": "5.6.1",
"bip39": "3.0.4"
}
}