{
  "name": "@hyperplay/chains",
  "version": "0.6.7",
  "description": "A package to get chain metadata",
  "author": "Brett Cleary",
  "license": "MIT",
  "devDependencies": {
    "@types/node": "^20.1.2",
    "semver": "^7.8.5",
    "ts-node": "^10.9.1",
    "tslib": "^2.5.0",
    "typescript": "^5.0.4",
    "vite": "^4.3.5",
    "vite-plugin-dts": "^4.5.4",
    "vitest": "^1.2.0"
  },
  "dependencies": {
    "axios": "^1.4.0",
    "viem": "^2.17.3"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    }
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "scripts": {
    "generateChainMap": "ts-node ./src/generateChainMap.ts",
    "buildDist": "vite build",
    "test": "vitest",
    "bumpPkgVersion": "ts-node ./cd/bumpPkgVersion.ts",
    "syncNewChains": "yarn bumpPkgVersion && git checkout -b sync/testing && yarn generateChainMap && git add * && git commit -m 'update' && git push --set-upstream origin sync/testing && yarn submitPR",
    "submitPR": "gh pr create --title Sync --body body"
  }
}