-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.36 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 3.36 KB
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
{
"name": "@metamask/eth-hd-keyring",
"version": "14.1.1",
"description": "A simple standard interface for a seed phrase generated set of Ethereum accounts",
"keywords": [
"ethereum",
"keyring"
],
"homepage": "https://github.com/MetaMask/accounts/tree/main/packages/keyring-eth-hd#readme",
"bugs": {
"url": "https://github.com/MetaMask/accounts/issues"
},
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/accounts.git"
},
"files": [
"dist/",
"v2.js"
],
"sideEffects": false,
"main": "./dist/index.cjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./v2": {
"import": {
"types": "./dist/v2/index.d.mts",
"default": "./dist/v2/index.mjs"
},
"require": {
"types": "./dist/v2/index.d.cts",
"default": "./dist/v2/index.cjs"
}
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "ts-bridge --project tsconfig.build.json --verbose --clean --no-references",
"build:all": "ts-bridge --project tsconfig.build.json --verbose --clean",
"build:clean": "yarn build --clean",
"build:docs": "typedoc",
"changelog:update": "../../scripts/update-changelog.sh @metamask/eth-hd-keyring",
"changelog:validate": "../../scripts/validate-changelog.sh @metamask/eth-hd-keyring",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../scripts/since-latest-release.sh",
"test": "yarn test:source && yarn test:types",
"test:clean": "NODE_OPTIONS=--experimental-vm-modules jest --clearCache",
"test:source": "NODE_OPTIONS=--experimental-vm-modules jest --reporters=jest-silent-reporter",
"test:types": "../../scripts/tsd-test.sh ./src",
"test:verbose": "NODE_OPTIONS=--experimental-vm-modules jest --verbose",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
},
"dependencies": {
"@ethereumjs/tx": "^5.4.0",
"@ethereumjs/util": "^9.1.0",
"@metamask/eth-sig-util": "^8.2.0",
"@metamask/key-tree": "^10.0.2",
"@metamask/keyring-api": "^23.5.0",
"@metamask/keyring-sdk": "^2.2.0",
"@metamask/keyring-utils": "^3.3.1",
"@metamask/scure-bip39": "^2.1.1",
"@metamask/superstruct": "^3.3.0",
"@metamask/utils": "^11.11.0",
"ethereum-cryptography": "^2.2.1"
},
"devDependencies": {
"@lavamoat/allow-scripts": "^3.2.1",
"@lavamoat/preinstall-always-fail": "^2.1.0",
"@metamask/account-api": "^1.1.0",
"@metamask/auto-changelog": "^6.1.0",
"@metamask/bip39": "^4.0.0",
"@metamask/old-hd-keyring": "npm:@metamask/eth-hd-keyring@^4.0.1",
"@ts-bridge/cli": "^0.6.3",
"@types/jest": "^29.5.12",
"deepmerge": "^4.2.2",
"jest": "^29.5.0",
"typescript": "~5.3.3"
},
"engines": {
"node": ">=22"
},
"lavamoat": {
"allowScripts": {
"@lavamoat/preinstall-always-fail": false,
"@metamask/eth-hd-keyring>ethereumjs-util>ethereum-cryptography>keccak": false,
"@metamask/eth-hd-keyring>ethereumjs-util>ethereum-cryptography>secp256k1": false
}
}
}