{
  "name": "@latticexyz/protocol-parser",
  "version": "2.0.8",
  "description": "Parser utilities for the MUD protocol",
  "repository": {
    "type": "git",
    "url": "https://github.com/latticexyz/mud.git",
    "directory": "packages/protocol-parser"
  },
  "license": "MIT",
  "type": "module",
  "exports": {
    ".": "./dist/index.js",
    "./internal": "./dist/internal.js"
  },
  "typesVersions": {
    "*": {
      "index": [
        "./src/exports/index.ts"
      ],
      "internal": [
        "./src/exports/internal.ts"
      ]
    }
  },
  "dependencies": {
    "abitype": "1.0.0",
    "viem": "2.9.20",
    "@latticexyz/common": "2.0.8",
    "@latticexyz/config": "2.0.8",
    "@latticexyz/schema-type": "2.0.8"
  },
  "devDependencies": {
    "tsup": "^6.7.0",
    "vitest": "0.34.6"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "pnpm run build:js",
    "build:js": "tsup",
    "clean": "pnpm run clean:js",
    "clean:js": "rimraf dist",
    "dev": "tsup --watch",
    "lint": "eslint .",
    "test": "vitest typecheck --run && vitest --run",
    "test:ci": "pnpm run test"
  }
}