43 lines
1023 B
JSON
43 lines
1023 B
JSON
{
|
|
"name": "@codemirror/commands",
|
|
"version": "0.20.0",
|
|
"description": "Collection of editing commands for the CodeMirror code editor",
|
|
"scripts": {
|
|
"test": "cm-runtests",
|
|
"prepare": "cm-buildhelper src/commands.ts"
|
|
},
|
|
"keywords": [
|
|
"editor",
|
|
"code"
|
|
],
|
|
"author": {
|
|
"name": "Marijn Haverbeke",
|
|
"email": "marijnh@gmail.com",
|
|
"url": "http://marijnhaverbeke.nl"
|
|
},
|
|
"type": "module",
|
|
"main": "dist/index.cjs",
|
|
"exports": {
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.cjs"
|
|
},
|
|
"types": "dist/index.d.ts",
|
|
"module": "dist/index.js",
|
|
"sideEffects": false,
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@codemirror/language": "^0.20.0",
|
|
"@codemirror/state": "^0.20.0",
|
|
"@codemirror/view": "^0.20.0",
|
|
"@lezer/common": "^0.16.0"
|
|
},
|
|
"devDependencies": {
|
|
"@codemirror/buildhelper": "^0.1.5",
|
|
"@codemirror/lang-javascript": "^0.20.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/codemirror/commands.git"
|
|
}
|
|
}
|