@ethereumjs/wallet
Version:
Utilities for handling Ethereum keys
67 lines (66 loc) • 1.9 kB
JSON
{
"name": "@ethereumjs/wallet",
"version": "2.0.4",
"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 <alex@rtfs.hu>",
"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",
"test:browser": "npx vitest run --config=../../config/vitest.config.browser.mts",
"test:node": "vitest run",
"tsc": "../../config/cli/ts-compile.sh"
},
"dependencies": {
"@ethereumjs/util": "^9.1.0",
"@scure/base": "^1.1.7",
"ethereum-cryptography": "^2.2.1",
"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"
}
}