Diffdown is a real-time collaborative Markdown editor/previewer built on the AT Protocol diffdown.com
at 864c8fd63cccd160a05f67a7ce42eac86768c97c 36 lines 984 B view raw
1{ 2 "name": "@lezer/css", 3 "version": "1.3.1", 4 "description": "lezer-based CSS 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/generator": "^1.8.0", 17 "mocha": "^10.2.0", 18 "rollup": "^2.52.2", 19 "@rollup/plugin-node-resolve": "^9.0.0" 20 }, 21 "dependencies": { 22 "@lezer/common": "^1.2.0", 23 "@lezer/lr": "^1.3.0", 24 "@lezer/highlight": "^1.0.0" 25 }, 26 "repository": { 27 "type" : "git", 28 "url" : "https://github.com/lezer-parser/css.git" 29 }, 30 "scripts": { 31 "build": "lezer-generator src/css.grammar -o src/parser && rollup -c", 32 "build-debug": "lezer-generator src/css.grammar --names -o src/parser && rollup -c", 33 "prepare": "npm run build", 34 "test": "mocha test/test-*.js" 35 } 36}