{
  "name": "@bungres/orm",
  "version": "1.3.2",
  "description": "Type-safe ORM for Postgres using Bun native SQL",
  "license": "MIT",
  "engines": {
    "bun": ">=1.3.0"
  },
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "author": "aniket khote",
  "repository": {
    "type": "git",
    "url": "https://github.com/bungres/bungres.git",
    "directory": "packages/bungres-orm"
  },
  "bugs": {
    "url": "https://github.com/bungres/bungres/issues"
  },
  "homepage": "https://github.com/bungres/bungres#readme",
  "keywords": [
    "bun",
    "postgres",
    "orm",
    "sql",
    "database",
    "typescript"
  ],
  "scripts": {
    "build:types": "tsc --emitDeclarationOnly",
    "build": "rm -rf ./dist && bun build ./src/index.ts --outdir ./dist --target bun --format esm --minify --packages=external && bun run build:types",
    "dev": "bun --watch src/index.ts",
    "test": "bun test"
  },
  "devDependencies": {
    "bun-types": "^1.3.14",
    "typescript": "^7.0.2"
  }
}
