Diffdown is a real-time collaborative Markdown editor/previewer built on the AT Protocol diffdown.com
at 864c8fd63cccd160a05f67a7ce42eac86768c97c 37 lines 1.0 kB view raw
1{ 2 "name": "@lezer/html", 3 "version": "1.3.13", 4 "description": "lezer-based HTML grammar", 5 "main": "dist/index.cjs", 6 "type": "module", 7 "exports": { 8 "import": "./dist/index.js", 9 "require": "./dist/index.cjs" 10 }, 11 "module": "dist/index.js", 12 "types": "dist/index.d.ts", 13 "author": "Marijn Haverbeke <marijn@haverbeke.berlin>", 14 "license": "MIT", 15 "devDependencies": { 16 "@lezer/javascript": "^1.0.0", 17 "@lezer/generator": "^1.0.0", 18 "mocha": "^10.2.0", 19 "rollup": "^2.52.2", 20 "@rollup/plugin-node-resolve": "^9.0.0" 21 }, 22 "dependencies": { 23 "@lezer/lr": "^1.0.0", 24 "@lezer/highlight": "^1.0.0", 25 "@lezer/common": "^1.2.0" 26 }, 27 "repository": { 28 "type" : "git", 29 "url" : "https://github.com/lezer-parser/html.git" 30 }, 31 "scripts": { 32 "build": "lezer-generator src/html.grammar -o src/parser && rollup -c", 33 "build-debug": "lezer-generator src/html.grammar --names -o src/parser && rollup -c", 34 "prepare": "npm run build", 35 "test": "mocha test/test-*.js" 36 } 37}