{
  "name": "@databridge-cli/cli",
  "version": "0.2.11",
  "description": "Auto-generate production-ready REST APIs and type-safe SDKs from any database (MySQL, PostgreSQL, SQL Server, SQLite, CockroachDB)",
  "type": "module",
  "homepage": "https://databridge.chanansystems.co.ke",
  "repository": {
    "type": "git",
    "url": "https://github.com/alex-migwi/databridge.git",
    "directory": "packages/cli"
  },
  "bugs": {
    "url": "https://github.com/alex-migwi/databridge/issues"
  },
  "author": "Alex Migwi",
  "license": "MIT",
  "keywords": [
    "api-generator",
    "rest-api",
    "sdk-generator",
    "openapi",
    "prisma",
    "mysql",
    "postgresql",
    "sql-server",
    "sqlite",
    "cockroachdb",
    "fastify",
    "typescript",
    "code-generation",
    "database-tools",
    "backend"
  ],
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "databridge": "./bin/run.js",
    "create-databridge": "./bin/run.js"
  },
  "files": [
    "/bin",
    "/dist",
    "/templates",
    "/oclif.manifest.json"
  ],
  "scripts": {
    "build": "tsc -b && pnpm run copy:templates",
    "copy:templates": "node -e \"import('fs').then(fs => fs.mkdirSync('templates', {recursive: true}))\" && node -e \"import('fs').then(fs => fs.cpSync('src/templates', 'templates', {recursive: true}))\"",
    "dev": "tsx bin/dev.ts",
    "postpack": "rm -f oclif.manifest.json",
    "prepack": "pnpm build && oclif manifest",
    "version": "oclif readme && git add README.md",
    "test": "vitest run",
    "test:watch": "vitest"
  },
  "dependencies": {
    "@fastify/cors": "^11.1.0",
    "@fastify/swagger": "^9.3.1",
    "@fastify/swagger-ui": "^5.2.3",
    "@oclif/core": "^4.0.0",
    "@oclif/plugin-help": "^6.0.0",
    "@oclif/plugin-plugins": "^5.0.0",
    "@prisma/client": "^7.1.0",
    "@prisma/generator-helper": "^7.1.0",
    "@prisma/internals": "^7.1.0",
    "chalk": "^5.6.2",
    "fastify": "^5.6.2",
    "fastify-plugin": "^5.1.0",
    "fs-extra": "^11.3.2",
    "glob": "^13.0.0",
    "pino": "^10.1.0",
    "pino-pretty": "^13.1.2",
    "prisma": "^7.1.0",
    "ts-morph": "^27.0.2",
    "ts-node": "^10.9.2",
    "tsx": "^4.21.0",
    "zod": "^4.1.13"
  },
  "devDependencies": {
    "@types/fs-extra": "^11.0.0",
    "@types/glob": "^9.0.0",
    "cross-env": "^7.0.3",
    "oclif": "^4.0.0",
    "vitest": "^4.0.18"
  },
  "oclif": {
    "bin": "databridge",
    "dirname": "databridge",
    "commands": "./dist/commands",
    "topicSeparator": " "
  }
}
