{
  "name": "bun-spark",
  "version": "0.0.1-alpha.13",
  "description": "(Spark) A postgres query builder for Bun",
  "module": "index.ts",
  "type": "module",
  "main": "index.ts",
  "types": "index.ts",
  "scripts": {
    "dev": "bun run --watch index.ts",
    "test": "bun test test/",
    "test:coverage": "bun test --coverage",
    "lint": "biome lint .",
    "lint:fix": "biome lint . --write",
    "format": "biome format . --write",
    "type-check": "tsc --noEmit",
    "build": "tsc",
    "check": "bun run test && bun run lint && bun run type-check && bun run format",
    "docs:deploy": "mkdocs gh-deploy --force",
    "docs:serve": "mkdocs serve"
  },
  "keywords": [
    "bun",
    "postgresql",
    "query-builder",
    "orm",
    "typescript"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/necessarylion/bun-spark"
  },
  "author": "Your Name",
  "license": "MIT",
  "devDependencies": {
    "@biomejs/biome": "^2.1.3",
    "@types/bun": "latest",
    "@types/pluralize": "^0.0.33"
  },
  "peerDependencies": {
    "typescript": "^5",
    "reflect-metadata": "^0.2.2"
  },
  "dependencies": {
    "change-case": "^5.4.4",
    "pluralize": "^8.0.0",
    "typescript-mix": "^3.1.3"
  }
}
