{
  "name": "@jetstreamapp/soql-parser-js",
  "version": "8.0.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-all build:bundles build:declarations",
    "build:bundles": "node tasks/build.mjs",
    "build:esm": "node tasks/build.mjs esm",
    "build:lwc": "node tasks/build.mjs lwc",
    "build:cjs": "node tasks/build.mjs cjs",
    "build:cli": "node tasks/build.mjs cli",
    "build:declarations": "tsc --project tsconfig.json",
    "tsc": "tsc",
    "release": "release-it",
    "copy-tc-to-docs": "tsx ./tasks/copy-test-cases-to-docs.ts",
    "test": "vitest --passWithNoTests --testTimeout 10000",
    "test:watch": "jest --watch",
    "soql-parser-js": "node ./bin"
  },
  "author": "Austin Turner <paustint@gmail.com>",
  "license": "MIT",
  "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",
    "esbuild": "^0.28.0",
    "lodash.get": "^4.4.2",
    "npm-run-all": "^4.1.5",
    "prettier": "^3.9.6",
    "release-it": "^21.0.1",
    "tsx": "^4.23.9",
    "typescript": "^6.0.3",
    "vitest": "^4.1.10"
  },
  "keywords": [
    "soql",
    "salesforce",
    "parse",
    "compose",
    "parser"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jetstreamapp/soql-parser-js.git"
  }
}
