@ledgerhq/evm-tools
Version:
EVM tooling used for coin integrations & app bindings
77 lines • 2.12 kB
JSON
{
"name": "@ledgerhq/evm-tools",
"version": "1.12.7",
"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",
"./*": {
"@ledgerhq/source": "./src/*.ts",
"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.13.2",
"crypto-js": "4.2.0",
"@ledgerhq/live-env": "^2.36.0"
},
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"@types/jest": "30.0.0",
"@types/node": "24.12.0",
"jest": "30.2.0",
"@swc/jest": "0.2.39",
"@swc/core": "1.15.11",
"@ledgerhq/types-live": "^6.109.0"
},
"scripts": {
"clean": "rimraf lib lib-es",
"build": "tsc --project tsconfig.build.json && tsc --project tsconfig.build.json -m esnext --moduleResolution bundler --outDir lib-es",
"prewatch": "pnpm build",
"watch": "tsc --watch --project tsconfig.build.json",
"watch:es": "tsc --watch --project tsconfig.build.json -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"
}
}