Diffdown is a real-time collaborative Markdown editor/previewer built on the AT Protocol diffdown.com
at 9199d4f348146b93a8d99c8a2fb6f3bf911d45ca 32 lines 803 B view raw
1{ 2 "name": "@lezer/lr", 3 "version": "1.4.8", 4 "description": "Incremental 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 "repository": { 16 "type" : "git", 17 "url" : "https://github.com/lezer-parser/lr.git" 18 }, 19 "devDependencies": { 20 "@marijn/buildtool": "^0.1.5", 21 "@types/node": "^20.6.2" 22 }, 23 "dependencies": { 24 "@lezer/common": "^1.0.0" 25 }, 26 "files": ["dist"], 27 "scripts": { 28 "test": "echo 'Tests are in @lezer/generator'", 29 "watch": "node build.js --watch", 30 "prepare": "node build.js; tsc src/constants.ts -d --outDir dist" 31 } 32}