UNPKG

@ethereumjs/wallet

Version:
70 lines (69 loc) 2.62 kB
{ "name": "@ethereumjs/wallet", "version": "10.0.0", "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": "module", "sideEffects": false, "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "exports": { ".": { "import": { "typescript": "./src/index.ts", "default": "./dist/esm/index.js" }, "require": "./dist/cjs/index.js" } }, "files": ["src", "dist"], "scripts": { "biome": "npx @biomejs/biome check", "biome:fix": "npx @biomejs/biome check --write", "build": "../../config/cli/ts-build.sh", "clean": "../../config/cli/clean-package.sh", "coverage": "DEBUG=ethjs npx vitest run -c ../../config/vitest.config.coverage.mts", "coverage:istanbul": "DEBUG=ethjs npx vitest run -c ../../config/vitest.config.coverage.istanbul.mts", "docs:build": "npx typedoc --options typedoc.mjs", "examples": "tsx ../../scripts/examples-runner.ts -- wallet", "examples:build": "npx embedme README.md", "lint": "npm run biome && eslint --config ./eslint.config.mjs .", "lint:fix": "npm run biome:fix && eslint --fix --config ./eslint.config.mjs .", "prepublishOnly": "../../config/cli/prepublish.sh", "sc": "npm run spellcheck", "spellcheck": "npm run spellcheck:ts && npm run spellcheck:md", "spellcheck:ts": "npx cspell --gitignore -c ../../config/cspell-ts.json \"./**/*.ts\" --cache --show-suggestions --show-context", "spellcheck:md": "npx cspell --gitignore -c ../../config/cspell-md.json \"**.md\" --cache --show-suggestions --show-context", "test": "npm run test:node && npm run test:browser", "test:browser": "npx vitest run --config=../../config/vitest.config.browser.mts", "test:node": "npx vitest run -c ../../config/vitest.config.mts", "tsc": "../../config/cli/ts-compile.sh" }, "dependencies": { "@ethereumjs/util": "^10.0.0", "@scure/base": "^1.2.4", "ethereum-cryptography": "^3.2.0", "js-md5": "^0.8.3", "uuid": "^11.1.0" }, "devDependencies": { "@types/js-md5": "^0.7.2", "@types/lodash.zip": "^4.2.9", "@types/uuid": "^10.0.0", "ethers": "^6.13.5", "lodash.zip": "^4.2.0" }, "engines": { "node": ">=18" } }