{
  "name": "@ytrynot/qb",
  "version": "1.1.5",
  "description": "Fluent SQLite Query Builder with Zod and DNA schema integration",
  "author": "linqFR",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/linqFR/ytn.git",
    "directory": "packages/query-builder"
  },
  "bugs": {
    "url": "https://github.com/linqFR/ytn/issues"
  },
  "homepage": "https://github.com/linqFR/ytn/tree/main/packages/query-builder#readme",
  "keywords": [
    "sqlite",
    "query-builder",
    "zod",
    "dna",
    "sql",
    "typescript",
    "dml",
    "fluent"
  ],
  "type": "module",
  "sideEffects": false,
  "engines": {
    "node": ">=26.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "vitest run"
  },
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./min": {
      "import": "./dist/index.min.js",
      "types": "./dist/index.d.ts"
    }
  },
  "peerDependencies": {
    "@ytrynot/dna": "^0.11.0",
    "zod": "^4.5.4"
  },
  "peerDependenciesMeta": {
    "@ytrynot/dna": {
      "optional": true
    },
    "zod": {
      "optional": true
    }
  },
  "devDependencies": {
    "@types/better-sqlite3": "^9.6.0",
    "@types/node": "^26.4.0",
    "@ytrynot/dna": "*",
    "@ytrynot/shared": "*",
    "better-sqlite3": "^13.0.3",
    "tsup": "^8.5.1",
    "tsx": "^4.23.13",
    "zod": "^4.5.4"
  }
}
