Add EmoSet training and evaluation
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
{
|
||||
"title": "Settings Editor Form UI",
|
||||
"description": "Settings editor form ui settings.",
|
||||
"properties": {
|
||||
"settingEditorType": {
|
||||
"title": "Type of editor for the setting.",
|
||||
"description": "Set the type of editor to use while editing your settings.",
|
||||
"enum": ["json", "ui"],
|
||||
"default": "ui"
|
||||
},
|
||||
"toSkip": {
|
||||
"title": "Additional plugins to skip in settings editor",
|
||||
"description": "List of additional plugin IDs that should not be displayed in the settings editor. These plugins can still be configured programmatically or via overrides.json. Note: Some core plugins like context-menu and main-menu are always hidden and cannot be made visible.",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string",
|
||||
"title": "Plugin ID",
|
||||
"description": "Plugin ID to skip"
|
||||
},
|
||||
"default": []
|
||||
}
|
||||
},
|
||||
"additionalProperties": false,
|
||||
"type": "object"
|
||||
}
|
||||
@@ -0,0 +1,67 @@
|
||||
{
|
||||
"name": "@jupyterlab/settingeditor-extension",
|
||||
"version": "4.5.1",
|
||||
"description": "JupyterLab - Setting Editor 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/view": "^6.38.1",
|
||||
"@jupyterlab/application": "^4.5.1",
|
||||
"@jupyterlab/apputils": "^4.6.1",
|
||||
"@jupyterlab/codeeditor": "^4.5.1",
|
||||
"@jupyterlab/pluginmanager": "^4.5.1",
|
||||
"@jupyterlab/rendermime": "^4.5.1",
|
||||
"@jupyterlab/settingeditor": "^4.5.1",
|
||||
"@jupyterlab/settingregistry": "^4.5.1",
|
||||
"@jupyterlab/statedb": "^4.5.1",
|
||||
"@jupyterlab/translation": "^4.5.1",
|
||||
"@jupyterlab/ui-components": "^4.5.1",
|
||||
"@lumino/disposable": "^2.1.5",
|
||||
"react": "^18.2.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"rimraf": "~5.0.5",
|
||||
"typescript": "~5.5.4"
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"jupyterlab": {
|
||||
"extension": true,
|
||||
"schemaDir": "schema"
|
||||
},
|
||||
"styleModule": "style/index.js"
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"title": "Setting Editor",
|
||||
"description": "Setting editor settings.",
|
||||
"jupyter.lab.shortcuts": [
|
||||
{
|
||||
"command": "settingeditor:open",
|
||||
"args": {},
|
||||
"keys": ["Accel ,"],
|
||||
"selector": "body"
|
||||
},
|
||||
{
|
||||
"command": "settingeditor:save",
|
||||
"args": {},
|
||||
"keys": ["Accel S"],
|
||||
"selector": ".jp-SettingEditor"
|
||||
}
|
||||
],
|
||||
"properties": {},
|
||||
"additionalProperties": false,
|
||||
"type": "object"
|
||||
}
|
||||
Reference in New Issue
Block a user