{
  "name": "@jetstreamapp/soql-parser-js",
  "version": "8.1.0",
  "salesforceApiVersion": "66.0",
  "description": "Salesforce.com SOQL parser and composer",
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.mjs",
  "types": "dist/types/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "require": "./dist/cjs/index.js",
      "import": "./dist/esm/index.mjs"
    }
  },
  "scripts": {
    "clean": "rm -rf ./dist/*",
    "prebuild": "npm run clean",
    "build": "npm run build:bundles && npm run build:declarations",
    "build:bundles": "node scripts/build.mjs",
    "build:esm": "node scripts/build.mjs esm",
    "build:lwc": "node scripts/build.mjs lwc",
    "build:cjs": "node scripts/build.mjs cjs",
    "build:cli": "node scripts/build.mjs cli",
    "build:declarations": "tsc --project tsconfig.json",
    "format": "oxfmt",
    "format:check": "oxfmt --check",
    "lint": "oxlint",
    "lint:fix": "oxlint --fix",
    "release": "node scripts/release.mjs",
    "release:ci": "release-it",
    "release:increment": "node scripts/derive-increment.mjs --explain",
    "typecheck": "tsc --noEmit -p tsconfig.typecheck.json",
    "copy-tc-to-docs": "tsx ./scripts/copy-test-cases-to-docs.ts",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "soql-parser-js": "node ./bin",
    "prepare": "git config core.hooksPath .githooks || true"
  },
  "author": "Austin Turner <paustint@gmail.com>",
  "license": "MIT",
  "sideEffects": false,
  "bin": {
    "soql-parser-js": "bin/soql-parser-js"
  },
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist/esm/**",
    "dist/cjs/**",
    "dist/cli/**",
    "dist/lwc/**",
    "dist/types/**",
    "bin/**",
    "AUTHORS.md",
    "CHANGELOG.md",
    "LICENSE.txt",
    "package.json",
    "README.md"
  ],
  "devDependencies": {
    "@release-it/keep-a-changelog": "^8.0.0",
    "@types/node": "^25.5.0",
    "@vitest/coverage-v8": "^4.1.10",
    "esbuild": "^0.28.2",
    "oxfmt": "^0.63.0",
    "oxlint": "^1.78.0",
    "release-it": "^21.0.2",
    "tsx": "^4.23.12",
    "typescript": "^7.0.2",
    "vitest": "^4.1.10"
  },
  "keywords": [
    "soql",
    "salesforce",
    "parse",
    "compose",
    "parser"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jetstreamapp/soql-parser-js.git"
  },
  "allowScripts": {
    "esbuild@0.28.2": true,
    "fsevents@2.3.3": true
  }
}
