This patch adds the autocomplete package to leverage the closeBrackets extension. The autocomplete paackage will also be benefical in the future when we want to migrate to using the full auto complete feature in codemirror 6. Differential Revision: https://phabricator.services.mozilla.com/D279497
31 lines
879 B
JSON
31 lines
879 B
JSON
{
|
|
"description": "Build a minified codeMirror bundle including useful addons",
|
|
"main": "",
|
|
"scripts": {
|
|
"build": "webpack",
|
|
"build-unminified": "webpack --optimization.minimizer=false",
|
|
"build-cm6": "rollup -c --minified",
|
|
"build-cm6-unminified": "rollup -c"
|
|
},
|
|
"author": "",
|
|
"license": "",
|
|
"dependencies": {
|
|
"@codemirror/autocomplete": "^6.20.0",
|
|
"@codemirror/lang-css": "^6.3.1",
|
|
"@codemirror/lang-html": "^6.4.9",
|
|
"@codemirror/lang-javascript": "^6.2.1",
|
|
"@codemirror/lang-json": "^6.0.2",
|
|
"@codemirror/lang-xml": "^6.1.0",
|
|
"@codemirror/language": "^6.10.0",
|
|
"@codemirror/search": "^6.5.6",
|
|
"codemirror": "6.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
"@rollup/plugin-terser": "^0.4.4",
|
|
"rollup": "^4.9.6",
|
|
"webpack": "^4.28.4",
|
|
"webpack-cli": "^3.2.1"
|
|
}
|
|
}
|