UNPKG

@ledgerhq/evm-tools

Version:

EVM tooling used for coin integrations & app bindings

75 lines 1.94 kB
{ "name": "@ledgerhq/evm-tools", "version": "1.8.2", "description": "EVM tooling used for coin integrations & app bindings", "main": "./index.ts", "keywords": [ "Ledger", "LedgerWallet", "evm", "Ethereum", "Hardware Wallet" ], "repository": { "type": "git", "url": "https://github.com/LedgerHQ/ledger-live.git" }, "bugs": { "url": "https://github.com/LedgerHQ/ledger-live/issues" }, "homepage": "https://github.com/LedgerHQ/ledger-live/tree/develop/libs/evm-tools", "publishConfig": { "access": "public" }, "typesVersions": { "*": { "lib/*": [ "lib/*" ], "lib-es/*": [ "lib-es/*" ], "*": [ "lib/*" ] } }, "exports": { "./lib/*": "./lib/*.js", "./lib-es/*": "./lib-es/*.js", "./*": { "require": "./lib/*.js", "default": "./lib-es/*.js" }, "./package.json": "./package.json" }, "license": "Apache-2.0", "dependencies": { "@ethersproject/constants": "^5.7.0", "@ethersproject/hash": "^5.7.0", "axios": "1.12.2", "crypto-js": "4.2.0", "@ledgerhq/live-env": "^2.22.0" }, "devDependencies": { "@types/crypto-js": "^4.1.1", "@types/jest": "^29.5.10", "@types/node": "^22.10.10", "jest": "^29.7.0", "ts-jest": "^29.1.1", "@ledgerhq/types-live": "^6.90.0" }, "scripts": { "clean": "rimraf lib lib-es", "build": "tsc && tsc -m esnext --moduleResolution bundler --outDir lib-es", "prewatch": "pnpm build", "watch": "tsc --watch", "watch:es": "tsc --watch -m esnext --moduleResolution bundler --outDir lib-es", "doc": "documentation readme src/** --section=API --pe ts --re ts --re d.ts", "lint": "eslint ./src --no-error-on-unmatched-pattern --ext .ts,.tsx --cache", "lint:fix": "pnpm lint --fix", "test": "jest", "coverage": "jest --coverage", "unimported": "unimported" } }