ethers-multicall-provider
Version:
⚡🕰️ Drop-in solution to batch smart contract RPC calls in a single RPC query via Multicall!
143 lines (142 loc) • 3.42 kB
JSON
{
"name": "ethers-multicall-provider",
"version": "6.5.0",
"description": "⚡🕰️ Drop-in solution to batch smart contract RPC calls in a single RPC query via Multicall!",
"main": "lib/index.js",
"files": [
"lib/*"
],
"scripts": {
"build": "tsc --build ./tsconfig.build.json",
"prepare": "husky install",
"test:watch": "jest --watch",
"test": "jest --coverage --detectOpenHandles",
"typecheck": "tsc --noEmit",
"typechain": "typechain --target ethers-v6 --out-dir src/types 'abis/*.json'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rubilmax/ethers-multicall-provider.git"
},
"license": "MIT",
"author": {
"name": "Romain (Rubilmax) Milon",
"email": "rmilon@gmail.com",
"url": "https://github.com/rubilmax"
},
"engines": {
"node": ">=12.0"
},
"keywords": [
"ethers",
"multicall",
"provider",
"rpc",
"call",
"evm",
"smart contract"
],
"bugs": {
"url": "https://github.com/rubilmax/ethers-multicall-provider/issues"
},
"homepage": "https://github.com/rubilmax/ethers-multicall-provider#readme",
"dependencies": {
"dataloader": "^2.2.2"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@typechain/ethers-v6": "^0.5.1",
"@types/jest": "^29.5.11",
"@types/lodash": "^4.14.202",
"@types/lodash.debounce": "^4.0.9",
"commitizen": "^4.3.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.4.1",
"ethers": "^6.13.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^14.0.1",
"prettier": "^2.8.8",
"ts-jest": "^29.1.2",
"typechain": "^8.3.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"ethers": "^6.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.ts": "prettier"
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"releaseRules": [
{
"type": "build",
"scope": "deps",
"release": "patch"
}
]
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "build",
"section": "Dependencies and Other Build Updates",
"hidden": false
}
]
}
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testTimeout": 60000,
"testMatch": [
"<rootDir>/test/**/*.spec.ts"
],
"collectCoverageFrom": [
"<rootDir>/src/**/*.ts",
"!<rootDir>/src/types/**/*.ts"
],
"transform": {
"\\.tsx?$": [
"ts-jest",
{
"diagnostics": false,
"isolatedModules": true
}
]
}
}
}