{
  "name": "@automate.ax/codec",
  "version": "0.159.2",
  "description": "Msgpack-based encoding helpers for Automate.ax runtime data.",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/zachsents/automate.ax.git",
    "directory": "packages/codec"
  },
  "homepage": "https://automate.ax",
  "bugs": {
    "url": "https://github.com/zachsents/automate.ax/issues"
  },
  "type": "module",
  "publishConfig": {
    "access": "public"
  },
  "zshy": {
    "exports": {
      ".": "./src/index.ts",
      "./http": "./src/http.ts",
      "./rpc": "./src/rpc.ts",
      "./*": "./src/*"
    },
    "cjs": false,
    "conditions": {
      "bun": "src"
    }
  },
  "exports": {
    ".": {
      "bun": "./src/index.ts",
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./http": {
      "bun": "./src/http.ts",
      "types": "./dist/http.d.ts",
      "default": "./dist/http.js"
    },
    "./rpc": {
      "bun": "./src/rpc.ts",
      "types": "./dist/rpc.d.ts",
      "default": "./dist/rpc.js"
    },
    "./*": {
      "bun": "./src/*",
      "types": "./dist/*",
      "default": "./dist/*"
    }
  },
  "scripts": {
    "typecheck": "resource-broker run --pool automate-ax-validation --limit 2 --weight 1 -- tsc --noEmit",
    "lint": "oxlint --type-aware --threads=2 && bun --bun eslint . --cache --cache-strategy content",
    "lint:fix": "oxlint --type-aware --threads=2 --fix --fix-suggestions && bun --bun eslint . --fix --cache --cache-strategy content",
    "check": "bun run typecheck && bun run lint",
    "test": "vitest run --testTimeout 10000",
    "build": "zshy",
    "prepublishOnly": "bun run lint && bun run typecheck && bun run test && bun run build"
  },
  "files": [
    "dist",
    "src",
    "README.md",
    "LICENSE"
  ],
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "devDependencies": {
    "@internal/config": "0.3.0",
    "@types/bun": "latest",
    "@typescript/native": "npm:typescript@^7.0.2",
    "@zachsents/oxlint-config": "^0.4.1",
    "eslint": "^9.39.5",
    "oxlint": "^1.76.0",
    "oxlint-tsgolint": "^7.0.2001",
    "vitest": "^4.1.9",
    "zshy": "^0.7.2"
  },
  "dependencies": {
    "@orpc/client": "1.15.0",
    "@remix-run/multipart-parser": "^0.16.4",
    "@standard-schema/spec": "^1.1.0",
    "content-type": "^3.0.0",
    "msgpackr": "^1.11.9",
    "zod": "^4.3.6"
  }
}
