Diffdown is a real-time collaborative Markdown editor/previewer built on the AT Protocol diffdown.com
at 22eecfdeb2ca15a85c4586429eff2d6c5e377e12 32 lines 808 B view raw
1{ 2 "name": "@lezer/common", 3 "version": "1.5.1", 4 "description": "Syntax tree data structure and parser interfaces for the lezer parser", 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 "@marijn/buildtool": "^0.1.5", 18 "@types/mocha": "^5.2.6", 19 "mocha": "^10.2.0", 20 "ts-node": "^10.9.2" 21 }, 22 "files": ["dist"], 23 "repository": { 24 "type" : "git", 25 "url" : "https://github.com/lezer-parser/common.git" 26 }, 27 "scripts": { 28 "watch": "node build.js --watch", 29 "prepare": "node build.js", 30 "test": "mocha" 31 } 32}