@kaiachain/ethers-ext
Version:
ethers.js extension for kaia blockchain
108 lines • 3.31 kB
JSON
{
"name": "@kaiachain/ethers-ext",
"version": "2.0.8",
"license": "MIT",
"description": "ethers.js extension for kaia blockchain",
"keywords": [
"ethereum",
"ethers",
"ethersjs",
"kaia",
"kaia sdk",
"kaia api",
"klaytn",
"klaytn sdk",
"klaytn api"
],
"homepage": "https://github.com/kaiachain/kaia-sdk/tree/dev/ethers-ext",
"repository": {
"type": "git",
"url": "https://github.com/kaiachain/kaia-sdk"
},
"main": "dist/cjs/index.js",
"types": "dist/esm/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.js",
"default": "./dist/cjs/index.js"
},
"./v5": {
"types": "./dist/esm/v5/index.d.ts",
"import": "./dist/esm/v5/index.js",
"default": "./dist/cjs/v5/index.js"
},
"./v6": {
"types": "./dist/esm/v6/index.d.ts",
"import": "./dist/esm/v6/index.js",
"default": "./dist/cjs/v6/index.js"
}
},
"files": [
"./dist",
"./src"
],
"devDependencies": {
"@kaiachain/ethers-ext": "file:./",
"@types/chai": "^4.3.7",
"@types/chai-as-promised": "^7.1.5",
"@types/lodash": "^4.14.192",
"@types/mocha": "^10.0.4",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"cpr": "^3.0.1",
"eslint": "^8.45.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-require-extensions": "^0.1.3",
"ethers5": "npm:ethers@^5.7.2",
"ethers6": "file:./node_modules/ethers",
"mocha": "^10.2.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.1",
"tsx": "^4.19.2",
"typedoc": "^0.25.4",
"typescript": "^5.0.4",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-visualizer-plugin2": "^1.1.0"
},
"dependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/abstract-provider": "^5.7.0",
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/address": "^5.7.0",
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/constants": "^5.7.0",
"@ethersproject/hash": "^5.7.0",
"@ethersproject/json-wallets": "^5.7.0",
"@ethersproject/keccak256": "^5.7.0",
"@ethersproject/logger": "^5.7.0",
"@ethersproject/networks": "^5.7.1",
"@ethersproject/properties": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@ethersproject/signing-key": "^5.7.0",
"@ethersproject/strings": "^5.7.0",
"@ethersproject/transactions": "^5.7.0",
"@ethersproject/wallet": "^5.7.0",
"@ethersproject/web": "^5.7.1",
"@kaiachain/js-ext-core": "^2.0.8",
"@kaiachain/web3rpc": "^2.0.0",
"ethers": "^6.12.1",
"lodash": "^4.17.21"
},
"scripts": {
"build": "npm run build:tsc && npm run build:bundle",
"build:tsc": "tsc && tsc -p tsconfig.cjs.json && npm run post:build",
"post:build": "cpr ./misc/esm-package.json ./dist/esm/package.json -o",
"build:bundle": "webpack --mode production",
"watch": "tsc -w",
"lint": "npm run lint:check",
"lint:check": "eslint example src test --cache --quiet",
"lint:fix": "eslint example src test --cache --fix",
"test": "mocha --timeout 50000 \"test/**/*.ts\""
}
}