{
  "name": "@metaobjectsdev/runtime-ts",
  "version": "0.24.1",
  "description": "Node-side runtime helpers for MetaObjects: Fastify route builders, Drizzle filter/sort integration, Kysely drivers.",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "bun": "./src/index.ts",
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./drivers": {
      "bun": "./src/drivers/index.ts",
      "types": "./dist/drivers/index.d.ts",
      "default": "./dist/drivers/index.js"
    },
    "./fastify": {
      "bun": "./src/fastify/index.ts",
      "types": "./dist/fastify/index.d.ts",
      "default": "./dist/fastify/index.js"
    },
    "./drizzle-fastify": {
      "bun": "./src/drizzle-fastify/index.ts",
      "types": "./dist/drizzle-fastify/index.d.ts",
      "default": "./dist/drizzle-fastify/index.js"
    },
    "./hono": {
      "bun": "./src/hono/index.ts",
      "types": "./dist/hono/index.d.ts",
      "default": "./dist/hono/index.js"
    }
  },
  "files": [
    "dist",
    "src",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsc -p .",
    "typecheck": "tsc -p tsconfig.typecheck.json"
  },
  "license": "Apache-2.0",
  "author": "Doug Mealing <doug@dougmealing.com>",
  "homepage": "https://metaobjects.dev",
  "bugs": {
    "url": "https://github.com/metaobjectsdev/metaobjects/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/metaobjectsdev/metaobjects.git",
    "directory": "server/typescript/packages/runtime-ts"
  },
  "keywords": [
    "metaobjects",
    "runtime",
    "fastify",
    "drizzle",
    "kysely"
  ],
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@metaobjectsdev/metadata": "0.24.1",
    "@metaobjectsdev/render": "0.24.1",
    "qs": "^6.13.0"
  },
  "peerDependencies": {
    "drizzle-orm": ">=0.36.0 <1.0.0",
    "fastify": ">=5.0.0 <6.0.0",
    "hono": ">=4.0.0 <5.0.0",
    "kysely": ">=0.27.0 <0.30.0",
    "zod": ">=3.23.0 <5.0.0"
  },
  "peerDependenciesMeta": {
    "drizzle-orm": {
      "optional": true
    },
    "fastify": {
      "optional": true
    },
    "hono": {
      "optional": true
    },
    "kysely": {
      "optional": true
    },
    "zod": {
      "optional": true
    }
  },
  "devDependencies": {
    "@libsql/client": "^0.15.0",
    "@libsql/kysely-libsql": "^0.4.1",
    "@types/pg": "^8.20.0",
    "@types/qs": "^6.9.0",
    "bun-types": "latest",
    "drizzle-orm": "^0.45.1",
    "fastify": "^5.6.2",
    "hono": "^4.6.0",
    "jsdom": "^29.1.1",
    "kysely": "^0.27.0",
    "pg": "^8.20.0",
    "pg-mem": "^3.0.4",
    "typescript": "^5.6.0",
    "zod": "^4.4.3"
  }
}
