Diffdown is a real-time collaborative Markdown editor/previewer built on the AT Protocol
diffdown.com
1{
2 "name": "@lezer/highlight",
3 "version": "1.2.3",
4 "description": "Highlighting system for Lezer parse 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 "@marijn/buildtool": "0.1.3",
17 "typescript": "^5.0.0"
18 },
19 "dependencies": {
20 "@lezer/common": "^1.3.0"
21 },
22 "files": ["dist"],
23 "repository": {
24 "type" : "git",
25 "url" : "https://github.com/lezer-parser/highlight.git"
26 },
27 "scripts": {
28 "watch": "node build.js --watch",
29 "prepare": "node build.js"
30 }
31}