Diffdown is a real-time collaborative Markdown editor/previewer built on the AT Protocol diffdown.com
1{ 2 "name": "@codemirror/commands", 3 "version": "6.10.2", 4 "description": "Collection of editing commands for the CodeMirror code editor", 5 "scripts": { 6 "test": "cm-runtests", 7 "prepare": "cm-buildhelper src/commands.ts" 8 }, 9 "keywords": [ 10 "editor", 11 "code" 12 ], 13 "author": { 14 "name": "Marijn Haverbeke", 15 "email": "marijn@haverbeke.berlin", 16 "url": "http://marijnhaverbeke.nl" 17 }, 18 "type": "module", 19 "main": "dist/index.cjs", 20 "exports": { 21 "import": "./dist/index.js", 22 "require": "./dist/index.cjs" 23 }, 24 "types": "dist/index.d.ts", 25 "module": "dist/index.js", 26 "sideEffects": false, 27 "license": "MIT", 28 "dependencies": { 29 "@codemirror/language": "^6.0.0", 30 "@codemirror/state": "^6.4.0", 31 "@codemirror/view": "^6.27.0", 32 "@lezer/common": "^1.1.0" 33 }, 34 "devDependencies": { 35 "@codemirror/buildhelper": "^1.0.0", 36 "@codemirror/lang-javascript": "^6.0.0" 37 }, 38 "repository": { 39 "type": "git", 40 "url": "git+https://github.com/codemirror/commands.git" 41 } 42}