85 lines
2.7 KiB
JSON
Executable File
85 lines
2.7 KiB
JSON
Executable File
{
|
|
"name": "@codemirror/next",
|
|
"version": "0.5.2",
|
|
"description": "Text/code editor component",
|
|
"scripts": {
|
|
"test": "mocha text/test/test-*.js state/test/test-*.js history/test/test-*.js rangeset/test/test-rangeset.js keymap/test/test-*.js view/test/test-heightmap.js lang-javascript/test/test-*.js closebrackets/test/test-*.js search/test/test-*.js collab/test/test-*.js comment/test/test-*.js",
|
|
"prepare": "bin/cm.js build",
|
|
"dev": "bin/cm.js devserver"
|
|
},
|
|
"keywords": [
|
|
"editor",
|
|
"code",
|
|
"syntax",
|
|
"highlighting"
|
|
],
|
|
"contributors": [
|
|
{
|
|
"name": "Adrian Heine",
|
|
"email": "mail@adrianheine.de"
|
|
},
|
|
{
|
|
"name": "Marijn Haverbeke",
|
|
"email": "marijnh@gmail.com"
|
|
}
|
|
],
|
|
"author": "Marijn Haverbeke <marijnh@gmail.com>",
|
|
"type": "module",
|
|
"exports": {
|
|
"./state": "./state/dist/index.js",
|
|
"./text": "./text/dist/index.js",
|
|
"./view": "./view/dist/index.js",
|
|
"./commands": "./commands/dist/index.js",
|
|
"./keymap": "./keymap/dist/index.js",
|
|
"./history": "./history/dist/index.js",
|
|
"./collab": "./collab/dist/index.js",
|
|
"./gutter": "./gutter/dist/index.js",
|
|
"./rangeset": "./rangeset/dist/index.js",
|
|
"./syntax": "./syntax/dist/index.js",
|
|
"./fold": "./fold/dist/index.js",
|
|
"./matchbrackets": "./matchbrackets/dist/index.js",
|
|
"./closebrackets": "./closebrackets/dist/index.js",
|
|
"./multiple-selections": "./multiple-selections/dist/index.js",
|
|
"./special-chars": "./special-chars/dist/index.js",
|
|
"./panel": "./panel/dist/index.js",
|
|
"./tooltip": "./tooltip/dist/index.js",
|
|
"./search": "./search/dist/index.js",
|
|
"./lint": "./lint/dist/index.js",
|
|
"./highlight": "./highlight/dist/index.js",
|
|
"./stream-syntax": "./stream-syntax/dist/index.js",
|
|
"./autocomplete": "./autocomplete/dist/index.js",
|
|
"./lang-javascript": "./lang-javascript/dist/index.js",
|
|
"./lang-python": "./lang-python/dist/index.js",
|
|
"./lang-css": "./lang-css/dist/index.js",
|
|
"./lang-html": "./lang-html/dist/index.js",
|
|
"./comment": "./comment/dist/index.js"
|
|
},
|
|
"license": "(MIT OR GPL-3.0)",
|
|
"dependencies": {
|
|
"lezer": "^0.8.3",
|
|
"lezer-css": "^0.8.3",
|
|
"lezer-html": "^0.8.4",
|
|
"lezer-javascript": "^0.8.3",
|
|
"lezer-python": "^0.8.0",
|
|
"lezer-tree": "^0.8.4",
|
|
"style-mod": "^2.2.2",
|
|
"w3c-keyname": "^2.2.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/mocha": "^5.2.0",
|
|
"serve-static": "^1.14.1",
|
|
"eslint4b-prebuilt": "^6.7.1",
|
|
"ist": "^1.1.6",
|
|
"mocha": "^7.1.1",
|
|
"esmoduleserve": "^0.1.2",
|
|
"rollup": "^1.25.3",
|
|
"ts-node": "^8.2.0",
|
|
"typescript": "^3.8.3",
|
|
"@codemirror/next": "."
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/codemirror/codemirror.next.git"
|
|
}
|
|
}
|