{
  "name": "@questdb/sql-parser",
  "version": "0.1.17",
  "description": "SQL parser for QuestDB syntax using Chevrotain",
  "type": "module",
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "sideEffects": false,
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.cjs"
      }
    },
    "./grammar": {
      "import": {
        "types": "./dist/grammar/index.d.ts",
        "default": "./dist/grammar/index.js"
      },
      "require": {
        "types": "./dist/grammar/index.d.ts",
        "default": "./dist/grammar/index.cjs"
      }
    }
  },
  "packageManager": "yarn@4.9.1",
  "scripts": {
    "build": "tsup && tsc -p tsconfig.build.json",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "generate:cst": "node --import jiti/register scripts/generate-cst-types.ts",
    "clean": "rm -rf dist coverage",
    "lint": "eslint src/ tests/",
    "lint:fix": "eslint src/ tests/ --fix",
    "prepublishOnly": "yarn clean && yarn build"
  },
  "keywords": [
    "questdb",
    "sql",
    "parser",
    "chevrotain",
    "ast"
  ],
  "files": [
    "dist",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=18.18.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/questdb/sql-parser.git"
  },
  "homepage": "https://github.com/questdb/sql-parser",
  "bugs": {
    "url": "https://github.com/questdb/sql-parser/issues"
  },
  "license": "Apache-2.0",
  "dependencies": {
    "chevrotain": "11.1.1"
  },
  "devDependencies": {
    "@chevrotain/cst-dts-gen": "^11.1.1",
    "@eslint/js": "^10.0.1",
    "@types/node": "^25.2.0",
    "eslint": "^10.0.0",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-prettier": "^5.5.5",
    "globals": "^17.3.0",
    "jiti": "^2.6.1",
    "prettier": "^3.8.1",
    "tsup": "^8.5.1",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.55.0",
    "vitest": "^4.0.18"
  }
}
