{
  "name": "orchid-orm",
  "version": "1.65.1",
  "description": "Postgres ORM",
  "keywords": [
    "orm",
    "pg",
    "postgres",
    "ts",
    "typescript"
  ],
  "homepage": "https://orchid-orm.netlify.app/guide/orm-and-query-builder.html",
  "license": "ISC",
  "author": "Roman Kushyn",
  "repository": {
    "type": "git",
    "url": "https://github.com/romeerez/orchid-orm.git",
    "directory": "packages/orm"
  },
  "files": [
    "dist",
    "codegen"
  ],
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "typings": "dist/index.d.ts",
  "exports": {
    ".": {
      "require": "./dist/index.js",
      "import": "./dist/index.mjs",
      "types": "./dist/index.d.ts"
    },
    "./codegen": {
      "require": "./codegen/index.js",
      "import": "./codegen/index.mjs",
      "types": "./codegen/index.d.ts"
    },
    "./node-postgres": {
      "require": "./dist/node-postgres.js",
      "import": "./dist/node-postgres.mjs",
      "types": "./dist/node-postgres.d.ts"
    },
    "./postgres-js": {
      "require": "./dist/postgres-js.js",
      "import": "./dist/postgres-js.mjs",
      "types": "./dist/postgres-js.d.ts"
    },
    "./migrations": {
      "require": "./dist/migrations/index.js",
      "import": "./dist/migrations/index.mjs",
      "types": "./dist/migrations/index.d.ts"
    },
    "./migrations/node-postgres": {
      "require": "./dist/migrations/node-postgres.js",
      "import": "./dist/migrations/node-postgres.mjs",
      "types": "./dist/migrations/node-postgres.d.ts"
    },
    "./migrations/postgres-js": {
      "require": "./dist/migrations/postgres-js.js",
      "import": "./dist/migrations/postgres-js.mjs",
      "types": "./dist/migrations/postgres-js.d.ts"
    }
  },
  "dependencies": {
    "inflection": "*",
    "prompts": "2.4.2",
    "pqb": "0.62.1",
    "rake-db": "2.31.1"
  },
  "devDependencies": {
    "@types/prompts": "2.4.2",
    "zod": "^4.3.6",
    "orchid-orm-schema-to-zod": "1.0.71",
    "test-utils": "0.3.6"
  },
  "peerDependencies": {
    "typescript": "*"
  },
  "scripts": {
    "test": "jest --watch --verbose false",
    "check": "jest",
    "types": "tsc",
    "test:ci": "jest --coverage --coverageReporters json-summary",
    "build": "rimraf ./dist/ ./codegen/ && rollup -c ./rollup.config.mjs",
    "lint": "oxlint --fix",
    "lint:check": "oxlint",
    "fmt": "oxfmt",
    "fmt:check": "oxfmt --check"
  }
}