{
  "name": "@kaiachain/js-ext-core",
  "version": "2.1.0",
  "license": "MIT",
  "main": "dist/esm/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"
    },
    "./util": {
      "types": "./dist/esm/util/index.d.ts",
      "import": "./dist/esm/util/index.js",
      "default": "./dist/cjs/util/index.js"
    },
    "./ethers-v6": {
      "types": "./dist/esm/ethers-v6/index.d.ts",
      "import": "./dist/esm/ethers-v6/index.js",
      "default": "./dist/cjs/ethers-v6/index.js"
    }
  },
  "files": [
    "./dist",
    "./src"
  ],
  "devDependencies": {
    "@types/chai": "^4.3.4",
    "@types/chai-as-promised": "^7.1.5",
    "@types/elliptic": "^6.4.16",
    "@types/lodash-es": "^4.17.12",
    "@types/lodash.camelcase": "^4.3.9",
    "@types/lodash.snakecase": "^4.1.9",
    "@types/mocha": "^10.0.6",
    "@types/node": "^20.8.10",
    "@typescript-eslint/eslint-plugin": "^6.1.0",
    "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",
    "mocha": "^10.2.0",
    "ts-node": "^10.9.1",
    "tsx": "^4.19.2",
    "typescript": "^5.0.4",
    "web3-utils": "^4.1.0"
  },
  "dependencies": {
    "@ethersproject/address": "^5.7.0",
    "@ethersproject/bignumber": "^5.7.0",
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/rlp": "^5.7.0",
    "@ethersproject/units": "^5.7.0",
    "elliptic": "^6.6.0",
    "ethers": "^6.13.5",
    "lodash.camelcase": "^4.3.0",
    "lodash.snakecase": "^4.1.1"
  },
  "scripts": {
    "build": "tsc && tsc --project tsconfig.cjs.json && npm run post:build",
    "post:build": "cpr ./misc/esm-package.json ./dist/esm/package.json -o",
    "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 10000 \"test/**/*.ts\""
  }
}