{
  "name": "codemirror-lang-html-n8n",
  "version": "1.0.0",
  "description": "HTML + n8n expression language support for CodeMirror 6",
  "scripts": {
    "test": "cm-runtests",
    "build": "cm-buildhelper src/html.ts",
    "grammar:build": "lezer-generator src/grammar/html.grammar -o src/grammar/parser && rollup -c src/grammar/rollup.config.js",
    "grammar:build-debug": "lezer-generator src/html.grammar --names -o src/parser && rollup -c src/grammar/rollup.config.js",
    "grammar:test": "mocha src/grammar/test/test-*.js"
  },
  "keywords": [
    "editor",
    "code"
  ],
  "author": {
    "name": "Iván Ovejero",
    "email": "ivov.src@gmail.com",
    "url": "https://ivov.dev"
  },
  "type": "module",
  "main": "dist/index.cjs",
  "exports": {
    "import": "./dist/index.js",
    "require": "./dist/index.cjs"
  },
  "types": "dist/index.d.ts",
  "module": "dist/index.js",
  "sideEffects": false,
  "license": "MIT",
  "dependencies": {
    "@codemirror/autocomplete": "^6.0.0",
    "@codemirror/lang-css": "^6.0.0",
    "@codemirror/lang-javascript": "^6.0.0",
    "@codemirror/language": "^6.0.0",
    "@codemirror/state": "^6.0.0",
    "@lezer/html": "^1.3.0",
    "@lezer/common": "^1.0.0",
    "@lezer/css": "^1.1.0",
    "@codemirror/view": "^6.2.2",
    "@lezer/lr": "^1.0.0",
    "@lezer/highlight": "^1.0.0"
  },
  "devDependencies": {
    "@codemirror/buildhelper": "^0.1.5",
    "@lezer/javascript": "^1.0.0",
    "@lezer/generator": "^1.0.0",
    "mocha": "^9.0.1",
    "rollup": "^2.52.2",
    "@rollup/plugin-node-resolve": "^9.0.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/ivov/codemirror-lang-html-n8n"
  }
}
