{
  "name": "@vercel/postgres-kysely",
  "version": "0.10.0",
  "description": "An @vercel/postgres wrapper for the kysely ORM",
  "homepage": "https://vercel.com",
  "repository": {
    "type": "git",
    "url": "https://github.com/vercel/storage.git",
    "directory": "packages/postgres-kysely"
  },
  "license": "Apache-2.0",
  "type": "module",
  "exports": {
    ".": {
      "import": {
        "edge-light": "./dist/index.js",
        "node": "./dist/index.js",
        "default": "./dist/index.js"
      },
      "require": {
        "edge-light": "./dist/index.cjs",
        "node": "./dist/index.cjs",
        "default": "./dist/index.cjs"
      }
    }
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "files": [
    "dist"
  ],
  "jest": {
    "preset": "ts-jest",
    "testEnvironment": "node"
  },
  "dependencies": {
    "@vercel/postgres": "0.10.0"
  },
  "devDependencies": {
    "@changesets/cli": "2.27.7",
    "@edge-runtime/jest-environment": "2.3.10",
    "@edge-runtime/types": "2.2.9",
    "@neondatabase/serverless": "0.9.4",
    "@types/jest": "29.5.12",
    "@types/node": "20.14.15",
    "@types/ws": "8.5.12",
    "eslint": "8.56.0",
    "jest": "29.7.0",
    "kysely": "0.27.4",
    "ts-jest": "29.1.5",
    "tsup": "8.1.0",
    "typescript": "5.3.3",
    "eslint-config-custom": "0.0.0",
    "tsconfig": "0.0.0"
  },
  "peerDependencies": {
    "kysely": "^0.24.2 || ^0.25.0 || ^0.26.0 || ^0.27.0"
  },
  "engines": {
    "node": ">=18.14"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch --clean=false",
    "lint": "eslint \"**/*.ts\"",
    "prettier-check": "prettier --check .",
    "publint": "npx publint",
    "test": "jest --env @edge-runtime/jest-environment .test.ts && jest --env node .test.ts",
    "type-check": "tsc --noEmit"
  }
}