{
  "name": "@dravana-network/registry",
  "description": "A collection of configs, artifacts, and schemas for Dravana bridge",
  "version": "0.0.1",
  "dependencies": {
    "yaml": "2.4.5",
    "zod": "^3.21.2"
  },
  "devDependencies": {
    "@changesets/cli": "^2.26.2",
    "@eslint/js": "^9.1.1",
    "@faker-js/faker": "^9.6.0",
    "@hyperlane-xyz/sdk": "9.0.0",
    "@types/chai-as-promised": "^8",
    "@types/mocha": "^10.0.1",
    "@types/node": "^16.9.1",
    "@typescript-eslint/parser": "^7.7.0",
    "chai": "^5.1.2",
    "chai-as-promised": "^8.0.1",
    "dotenv": "^16.4.7",
    "eslint": "^9.0.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-yml": "^1.14.0",
    "husky": "^9.0.11",
    "lint-staged": "^15.2.2",
    "mocha": "^10.2.0",
    "prettier": "^2.8.8",
    "sinon": "^18.0.0",
    "svgo": "3.3.2",
    "tsx": "^4.7.1",
    "typescript": "5.5.2",
    "typescript-eslint": "^7.7.0",
    "zod-to-json-schema": "^3.22.5"
  },
  "type": "module",
  "exports": {
    ".": "./dist/index.js",
    "./chains/schema.json": "./dist/chains/schema.json",
    "./chains/*": "./dist/chains/*",
    "./fs": "./dist/index-fs.js"
  },
  "types": "./dist/index.d.ts",
  "typesVersions": {
    "*": {
      "chains/*": [
        "./dist/chains/*/index.d.ts"
      ]
    }
  },
  "files": [
    "/dist"
  ],
  "sideEffects": false,
  "engines": {
    "node": ">=16"
  },
  "homepage": "https://dravana.network",
  "repository": "https://github.com/dravana-network/registry",
  "keywords": [
    "Dravana",
    "Registry",
    "Chains",
    "Deployments"
  ],
  "license": "MIT",
  "scripts": {
    "build": "tsx ./scripts/build.ts && tsc --project tsconfig.publish.json",
    "clean": "rm -rf ./dist ./tmp",
    "lint": "eslint ./src/ ./chains ./deployments",
    "lint:fix": "yarn lint --fix",
    "prettier": "prettier --write ./chains ./deployments",
    "prepare": "husky",
    "release": "yarn build && yarn changeset publish",
    "test:unit": "yarn build && mocha --require dotenv/config --config .mocharc.json './test/unit/*.test.ts' --exit",
    "test:health": "yarn build && mocha --config .mocharc.json './test/health/*.test.ts' --exit --parallel",
    "version:prepare": "yarn changeset version && yarn install --no-immutable",
    "version:check": "yarn changeset status"
  },
  "packageManager": "yarn@4.5.1"
}
