{
  "name": "lezer-r",
  "version": "0.1.3",
  "description": "lezer-based R grammar",
  "main": "dist/index.cjs",
  "type": "module",
  "exports": {
    "import": "./dist/index.es.js",
    "require": "./dist/index.cjs"
  },
  "module": "dist/index.es.js",
  "types": "dist/index.d.ts",
  "author": "Travis Harrison <TravisHarrisonYeah@gmail.com>",
  "license": "MIT",
  "devDependencies": {
    "@lezer/generator": "^1.7.1",
    "@rollup/plugin-node-resolve": "^15.3.0",
    "mocha": "^10.8.2",
    "rollup": "^4.24.4",
    "rollup-plugin-copy": "^3.5.0"
  },
  "dependencies": {
    "@lezer/highlight": "^1.2.1",
    "@lezer/lr": "^1.4.2"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/TravisYeah/lezer-r.git"
  },
  "scripts": {
    "build": "lezer-generator src/r.grammar -o src/parser && rollup -c",
    "build-debug": "lezer-generator src/r.grammar --names -o src/parser && rollup -c",
    "prepare": "npm run build",
    "test": "mocha test/test-r.js"
  }
}
