Diffdown is a real-time collaborative Markdown editor/previewer built on the AT Protocol diffdown.com
at 864c8fd63cccd160a05f67a7ce42eac86768c97c 37 lines 951 B view raw
1{ 2 "name": "@lezer/markdown", 3 "version": "1.6.3", 4 "description": "Incremental Markdown parser that consumes and emits Lezer trees", 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 "ist": "^1.1.1", 17 "mocha": "^10.2.0", 18 "@lezer/html": "^1.0.0", 19 "getdocs-ts": "^0.1.0", 20 "builddocs": "^1.0.0", 21 "@marijn/buildtool": "^0.1.6" 22 }, 23 "dependencies": { 24 "@lezer/common": "^1.5.0", 25 "@lezer/highlight": "^1.0.0" 26 }, 27 "repository": { 28 "type" : "git", 29 "url" : "https://github.com/lezer-parser/markdown.git" 30 }, 31 "scripts": { 32 "watch": "node build.js --watch", 33 "prepare": "node build.js", 34 "test": "mocha", 35 "build-readme": "node bin/build-readme.cjs" 36 } 37}