{
  "name": "@rest-rpc/core",
  "version": "0.1.0-beta.21",
  "description": "Core rest-rpc contract, fetch client, schema, and OpenAPI utilities.",
  "keywords": [
    "api-contract",
    "arktype",
    "contract-first",
    "fetch-client",
    "openapi",
    "rest",
    "rest-rpc",
    "rpc",
    "standard-schema",
    "type-safe-api",
    "typescript",
    "valibot",
    "zod"
  ],
  "homepage": "https://github.com/rest-rpc/rest-rpc#readme",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/rest-rpc/rest-rpc.git",
    "directory": "packages/core"
  },
  "files": [
    "dist"
  ],
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./client": {
      "types": "./dist/client/index.d.ts",
      "import": "./dist/client/index.js"
    },
    "./codecs": {
      "types": "./dist/codecs/index.d.ts",
      "import": "./dist/codecs/index.js"
    },
    "./contract": {
      "types": "./dist/contract/index.d.ts",
      "import": "./dist/contract/index.js"
    },
    "./generate": {
      "types": "./dist/generate/index.d.ts",
      "import": "./dist/generate/index.js"
    },
    "./openapi": {
      "types": "./dist/openapi/index.d.ts",
      "import": "./dist/openapi/index.js"
    },
    "./standard-schema": {
      "types": "./dist/standard-schema/index.d.ts",
      "import": "./dist/standard-schema/index.js"
    }
  },
  "devDependencies": {
    "@types/node": "26.3.0",
    "arktype": "^2.2.3",
    "typescript": "5.9.3",
    "valibot": "^1.4.2",
    "zod": "^4.4.3"
  },
  "peerDependencies": {
    "typescript": ">=5 <7"
  },
  "peerDependenciesMeta": {
    "typescript": {
      "optional": true
    }
  },
  "tsd": {
    "directory": "test-d"
  },
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "typecheck": "tsc -p tsconfig.json && tsd",
    "test": "node --test src/*.test.ts src/**/*.test.ts"
  }
}