{
  "name": "lezer-feel",
  "version": "3.0.1",
  "description": "Lezer-based FEEL grammar",
  "type": "module",
  "source": "./src/index.js",
  "main": "./dist/index.js",
  "exports": {
    ".": "./dist/index.js",
    "./package.json": "./package.json"
  },
  "types": "./dist/index.d.ts",
  "author": "Nico Rehwaldt <https://github.com/nikku>",
  "license": "MIT",
  "sideEffects": false,
  "devDependencies": {
    "@lezer/generator": "^1.8.0",
    "@rollup/plugin-node-resolve": "^16.0.3",
    "@types/mocha": "^10.0.10",
    "@types/node": "^24.12.2",
    "chai": "^6.2.2",
    "chokidar-cli": "^3.0.0",
    "eslint": "^9.39.4",
    "eslint-plugin-bpmn-io": "^2.2.0",
    "mocha": "^11.7.5",
    "npm-run-all2": "^8.0.4",
    "rollup": "^4.60.1",
    "source-map-support": "^0.5.21",
    "typescript": "^5.9.3"
  },
  "dependencies": {
    "@lezer/highlight": "^1.2.3",
    "@lezer/lr": "^1.4.10",
    "min-dash": "^5.0.0"
  },
  "engines": {
    "node": ">= 20.12.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/nikku/lezer-feel.git"
  },
  "scripts": {
    "build": "lezer-generator src/feel.grammar -o src/parser && rollup -c",
    "build-debug": "lezer-generator src/feel.grammar --names -o src/parser && rollup -c",
    "test": "mocha -r source-map-support/register test/test-*.js test/test-*.cjs",
    "dev": "run-p dev:*",
    "dev:build": "chokidar 'src/*.grammar' 'src/{highlight,tokens}.js' --initial -c 'npm run build-debug'",
    "dev:test": "chokidar '{dist,test}/**/*.{js,cjs,txt}' -c 'npm test'",
    "all": "run-s lint build check-types test",
    "lint": "eslint .",
    "check-types": "tsc --noEmit",
    "prepare": "run-s build"
  },
  "files": [
    "dist"
  ]
}
