{
  "name": "squel",
  "version": "6.0.7",
  "description": "SQL query string builder",
  "keywords": [
    "sql",
    "database",
    "rdbms",
    "query-builder",
    "mysql",
    "postgres",
    "mssql"
  ],
  "author": "Ramesh Nair <ram@hiddentao.com> (http://www.hiddentao.com/)",
  "contributors": [
    "Ramesh Nair <ram@hiddentao.com> (http://www.hiddentao.com/)",
    "Sergej Brjuchanov <serges@seznam.cz>"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/hiddentao/squel.git"
  },
  "homepage": "https://github.com/hiddentao/squel",
  "bugs": {
    "url": "https://github.com/hiddentao/squel/issues"
  },
  "type": "module",
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "types": "./dist/types/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js"
    },
    "./browser": "./dist/browser/squel.min.js"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE.md",
    "CHANGELOG.md"
  ],
  "engines": {
    "node": ">=18.0.0"
  },
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "scripts": {
    "build": "bun run scripts/build.ts",
    "test": "bun test",
    "test:coverage": "bun test --coverage --coverage-reporter=lcov",
    "test:watch": "bun test --watch",
    "lint": "biome check --write ./src ./tests ./scripts",
    "format": "biome format --write ./src ./tests ./scripts",
    "check": "biome check ./src ./tests ./scripts",
    "typecheck": "tsc --noEmit",
    "prepare": "husky",
    "prepublishOnly": "bun run build && bun run test"
  },
  "dependencies": {},
  "devDependencies": {
    "@biomejs/biome": "^1.9.4",
    "@commitlint/cli": "^19.8.1",
    "@commitlint/config-conventional": "^19.8.1",
    "@types/bun": "latest",
    "@types/node": "^22.0.0",
    "commit-and-tag-version": "^12.6.0",
    "husky": "^9.1.7",
    "typescript": "^5.3.0"
  }
}
