forked from ethereumjs/ethereumjs-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.88 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
{
"name": "@ethereumjs/wallet",
"version": "2.0.3",
"description": "Utilities for handling Ethereum keys",
"keywords": [
"ethereum",
"wallets",
"keys"
],
"homepage": "https://github.com/ethereumjs/ethereumjs-monorepo/packages/wallet",
"bugs": {
"url": "https://github.com/ethereumjs/ethereumjs-monorepo/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ethereumjs/ethereumjs-monorepo.git"
},
"license": "MIT",
"author": "Alex Beregszaszi <[email protected]>",
"type": "commonjs",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": [
"src",
"dist"
],
"scripts": {
"build": "../../config/cli/ts-build.sh",
"clean": "../../config/cli/clean-package.sh",
"coverage": "c8 --all --reporter=lcov --reporter=text npm run test:node",
"docs:build": "npx typedoc --options typedoc.cjs",
"examples": "tsx ../../scripts/examples-runner.ts -- wallet",
"examples:build": "npx embedme README.md",
"lint": "../../config/cli/lint.sh",
"lint:diff": "../../config/cli/lint-diff.sh",
"lint:fix": "../../config/cli/lint-fix.sh",
"prepublishOnly": "../../config/cli/prepublish.sh",
"test": "npm run test:node && npm run test:browser",
"test:browser": "npx vitest run --config=../../config/vitest.browser.config.mts",
"test:node": "vitest run",
"tsc": "../../config/cli/ts-compile.sh"
},
"dependencies": {
"@ethereumjs/util": "^9.0.3",
"@scure/base": "^1.1.5",
"ethereum-cryptography": "^2.1.3",
"js-md5": "^0.8.3",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/js-md5": "^0.4.3",
"@types/lodash.zip": "^4.2.7",
"@types/uuid": "^9.0.2",
"ethers": "^6.4.0",
"lodash.zip": "^4.2.0"
},
"engines": {
"node": ">=18"
}
}