Add EmoSet training and evaluation
This commit is contained in:
@@ -0,0 +1,75 @@
|
||||
{
|
||||
"name": "@jupyterlab/codemirror-extension",
|
||||
"version": "4.5.1",
|
||||
"description": "JupyterLab - CodeMirror Provider Extension",
|
||||
"homepage": "https://github.com/jupyterlab/jupyterlab",
|
||||
"bugs": {
|
||||
"url": "https://github.com/jupyterlab/jupyterlab/issues"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/jupyterlab/jupyterlab.git"
|
||||
},
|
||||
"license": "BSD-3-Clause",
|
||||
"author": "Project Jupyter",
|
||||
"sideEffects": [
|
||||
"style/**/*.css",
|
||||
"style/index.js"
|
||||
],
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
"style": "style/index.css",
|
||||
"directories": {
|
||||
"lib": "lib/"
|
||||
},
|
||||
"files": [
|
||||
"lib/*.d.ts",
|
||||
"lib/*.js.map",
|
||||
"lib/*.js",
|
||||
"schema/*.json",
|
||||
"style/**/*.css",
|
||||
"style/index.js",
|
||||
"src/**/*.{ts,tsx}"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "tsc -b",
|
||||
"clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
|
||||
"watch": "tsc -b --watch"
|
||||
},
|
||||
"dependencies": {
|
||||
"@codemirror/commands": "^6.8.1",
|
||||
"@codemirror/lang-markdown": "^6.3.2",
|
||||
"@codemirror/language": "^6.11.0",
|
||||
"@codemirror/legacy-modes": "^6.5.1",
|
||||
"@codemirror/search": "^6.5.10",
|
||||
"@codemirror/view": "^6.38.1",
|
||||
"@jupyter/ydoc": "^3.1.0",
|
||||
"@jupyterlab/application": "^4.5.1",
|
||||
"@jupyterlab/apputils": "^4.6.1",
|
||||
"@jupyterlab/codeeditor": "^4.5.1",
|
||||
"@jupyterlab/codemirror": "^4.5.1",
|
||||
"@jupyterlab/notebook": "^4.5.1",
|
||||
"@jupyterlab/settingregistry": "^4.5.1",
|
||||
"@jupyterlab/statusbar": "^4.5.1",
|
||||
"@jupyterlab/translation": "^4.5.1",
|
||||
"@jupyterlab/ui-components": "^4.5.1",
|
||||
"@lumino/coreutils": "^2.2.2",
|
||||
"@lumino/widgets": "^2.7.2",
|
||||
"@rjsf/utils": "^5.13.4",
|
||||
"@rjsf/validator-ajv8": "^5.13.4",
|
||||
"react": "^18.2.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/react": "^18.0.26",
|
||||
"rimraf": "~5.0.5",
|
||||
"typescript": "~5.5.4"
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"jupyterlab": {
|
||||
"extension": true,
|
||||
"schemaDir": "schema"
|
||||
},
|
||||
"styleModule": "style/index.js"
|
||||
}
|
||||
@@ -0,0 +1,85 @@
|
||||
{
|
||||
"jupyter.lab.setting-icon": "ui-components:text-editor",
|
||||
"jupyter.lab.setting-icon-label": "CodeMirror",
|
||||
"jupyter.lab.shortcuts": [
|
||||
{
|
||||
"command": "codemirror:delete-line",
|
||||
"keys": ["Accel D"],
|
||||
"selector": ".cm-content"
|
||||
},
|
||||
{
|
||||
"command": "codemirror:delete-line",
|
||||
"keys": ["Accel Shift K"],
|
||||
"selector": ".cm-content"
|
||||
},
|
||||
{
|
||||
"command": "codemirror:toggle-block-comment",
|
||||
"keys": ["Alt A"],
|
||||
"selector": ".cm-content"
|
||||
},
|
||||
{
|
||||
"command": "codemirror:toggle-comment",
|
||||
"keys": ["Accel /"],
|
||||
"selector": ".cm-content"
|
||||
},
|
||||
{
|
||||
"command": "codemirror:select-next-occurrence",
|
||||
"keys": ["Accel Shift D"],
|
||||
"selector": ".cm-content"
|
||||
}
|
||||
],
|
||||
"jupyter.lab.menus": {
|
||||
"main": [
|
||||
{
|
||||
"id": "jp-mainmenu-view",
|
||||
"items": [
|
||||
{
|
||||
"type": "submenu",
|
||||
"rank": 10,
|
||||
"submenu": {
|
||||
"id": "jp-mainmenu-codefold",
|
||||
"label": "Code Folding",
|
||||
"items": [
|
||||
{
|
||||
"command": "codemirror:fold-current",
|
||||
"rank": 1
|
||||
},
|
||||
{
|
||||
"command": "codemirror:unfold-current",
|
||||
"rank": 2
|
||||
},
|
||||
{
|
||||
"command": "codemirror:fold-subregions",
|
||||
"rank": 3
|
||||
},
|
||||
{
|
||||
"command": "codemirror:unfold-subregions",
|
||||
"rank": 4
|
||||
},
|
||||
{
|
||||
"command": "codemirror:fold-all",
|
||||
"rank": 5
|
||||
},
|
||||
{
|
||||
"command": "codemirror:unfold-all",
|
||||
"rank": 6
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"title": "CodeMirror",
|
||||
"description": "Text editor settings for all CodeMirror editors.",
|
||||
"properties": {
|
||||
"defaultConfig": {
|
||||
"default": {},
|
||||
"title": "Default editor configuration",
|
||||
"description": "Base configuration used by all CodeMirror editors.",
|
||||
"type": "object"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
}
|
||||
Reference in New Issue
Block a user