@ledgerhq/evm-tools
Version:
EVM tooling used for coin integrations & app bindings
77 lines • 2.02 kB
JSON
{
"name": "@ledgerhq/evm-tools",
"version": "1.7.1",
"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.7.7",
"crypto-js": "4.2.0",
"@ledgerhq/live-env": "^2.12.0",
"@ledgerhq/cryptoassets-evm-signatures": "^13.5.10"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@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.78.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"
}
}