{
  "name": "@moonwall/types",
  "type": "module",
  "version": "5.18.3",
  "description": "Testing framework for the Moon family of projects",
  "author": "timbrinded",
  "license": "ISC",
  "homepage": "https://github.com/Moonsong-Labs/moonwall#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Moonsong-Labs/moonwall.git",
    "directory": "packages/types"
  },
  "bugs": {
    "url": "https://github.com/Moonsong-Labs/moonwall/issues"
  },
  "keywords": [
    "moonwall",
    "moonbeam",
    "moondance",
    "polkadot",
    "kusama",
    "substrate"
  ],
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "module": "./dist/index.js",
  "types": "./dist/types/index.d.ts",
  "engines": {
    "node": ">=20"
  },
  "files": [
    "dist",
    "bin",
    "*.d.ts",
    "*.mjs"
  ],
  "dependencies": {
    "@types/node": "^24.10.1",
    "@zombienet/utils": "^0.0.30",
    "bottleneck": "^2.19.5",
    "ethers": "^6.16.0",
    "polkadot-api": "1.19.2",
    "viem": "2.41.2",
    "vitest": "3.2.4",
    "web3": "^4.16.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "peerDependencies": {
    "@polkadot/api": "^16.1.0",
    "@polkadot/api-base": "^16.1.0",
    "@polkadot/keyring": "^13.0.0",
    "@polkadot/types": "^16.1.0",
    "@polkadot/util": "^13.0.0",
    "@polkadot/util-crypto": "^13.0.0"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.3.8",
    "@polkadot/api": "16.1.2",
    "@polkadot/api-base": "16.1.2",
    "@polkadot/keyring": "13.5.1",
    "@polkadot/types": "16.1.2",
    "@polkadot/util": "13.5.1",
    "@polkadot/util-crypto": "13.5.1",
    "pino": "^10.1.0",
    "tsup": "^8.5.1",
    "typescript": "5.9.3",
    "typescript-json-schema": "0.67.0"
  },
  "scripts": {
    "clean": "rm -rf dist && rm -rf node_modules",
    "build": "rm -rf dist && tsup src --format esm --no-splitting --sourcemap && pnpm run generate-types",
    "generate-types": "tsc && pnpm schema",
    "watch": "tsup src --format esm --watch",
    "lint": "biome lint ./src",
    "lint:fix": "biome lint ./src --apply",
    "fmt": "biome format ./src",
    "fmt:fix": "biome format src --write",
    "prepublish": "pnpm run build && pnpm run generate-types",
    "schema": "typescript-json-schema --tsNodeRegister --esModuleInterop -o config_schema.json ./src/config.ts MoonwallConfig && pnpm biome format config_schema.json --write"
  }
}