{
  "name": "@bungres/kit",
  "version": "2.2.1",
  "description": "CLI toolkit for @bungres/orm — migrate, push, generate, pull",
  "license": "MIT",
  "engines": {
    "bun": ">=1.3.0"
  },
  "type": "module",
  "bin": {
    "bungres": "./dist/cli.js"
  },
  "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",
    "src/static",
    "README.md",
    "LICENSE"
  ],
  "author": "aniket khote",
  "repository": {
    "type": "git",
    "url": "https://github.com/bungres/bungres.git",
    "directory": "packages/bungres-kit"
  },
  "bugs": {
    "url": "https://github.com/bungres/bungres/issues"
  },
  "homepage": "https://github.com/bungres/bungres#readme",
  "keywords": [
    "bun",
    "postgres",
    "orm",
    "cli",
    "migration",
    "generator"
  ],
  "scripts": {
    "build:types": "tsc --emitDeclarationOnly",
    "build": "rm -rf ./dist && bun build ./src/cli.ts ./src/index.ts --outdir ./dist --target bun --format esm --minify --packages=external && cp -r ./src/static ./dist/static && bun run build:types",
    "dev": "bun --watch src/cli.ts",
    "test": "bun test"
  },
  "dependencies": {
    "@bungres/orm": "^1.3.2",
    "@clack/prompts": "^1.7.0",
    "picocolors": "^1.1.1"
  },
  "devDependencies": {
    "bun-types": "^1.3.14",
    "tailwindcss": "^4.3.3",
    "typescript": "^7.0.2"
  }
}
