Add EmoSet training and evaluation
This commit is contained in:
@@ -0,0 +1,68 @@
|
||||
{
|
||||
"name": "@jupyterlab/terminal-extension",
|
||||
"version": "4.5.1",
|
||||
"description": "JupyterLab - Terminal Emulator 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": {
|
||||
"@jupyterlab/application": "^4.5.1",
|
||||
"@jupyterlab/apputils": "^4.6.1",
|
||||
"@jupyterlab/documentsearch": "^4.5.1",
|
||||
"@jupyterlab/launcher": "^4.5.1",
|
||||
"@jupyterlab/mainmenu": "^4.5.1",
|
||||
"@jupyterlab/running": "^4.5.1",
|
||||
"@jupyterlab/services": "^7.5.1",
|
||||
"@jupyterlab/settingregistry": "^4.5.1",
|
||||
"@jupyterlab/terminal": "^4.5.1",
|
||||
"@jupyterlab/translation": "^4.5.1",
|
||||
"@jupyterlab/ui-components": "^4.5.1",
|
||||
"@lumino/widgets": "^2.7.2",
|
||||
"@xterm/addon-search": "~0.15.0",
|
||||
"color": "^5.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/webpack-env": "^1.18.0",
|
||||
"rimraf": "~5.0.5",
|
||||
"typescript": "~5.5.4"
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"jupyterlab": {
|
||||
"extension": true,
|
||||
"schemaDir": "schema"
|
||||
},
|
||||
"styleModule": "style/index.js"
|
||||
}
|
||||
@@ -0,0 +1,141 @@
|
||||
{
|
||||
"jupyter.lab.setting-icon": "ui-components:terminal",
|
||||
"jupyter.lab.setting-icon-label": "Terminal",
|
||||
"jupyter.lab.menus": {
|
||||
"context": [
|
||||
{
|
||||
"command": "terminal:copy",
|
||||
"selector": ".jp-Terminal",
|
||||
"rank": 1
|
||||
},
|
||||
{
|
||||
"command": "terminal:paste",
|
||||
"selector": ".jp-Terminal",
|
||||
"rank": 2
|
||||
},
|
||||
{
|
||||
"command": "terminal:refresh",
|
||||
"selector": ".jp-Terminal",
|
||||
"rank": 3
|
||||
}
|
||||
]
|
||||
},
|
||||
"title": "Terminal",
|
||||
"description": "Terminal settings.",
|
||||
"definitions": {
|
||||
"fontFamily": {
|
||||
"type": "string"
|
||||
},
|
||||
"fontSize": {
|
||||
"type": "integer",
|
||||
"minimum": 9,
|
||||
"maximum": 72
|
||||
},
|
||||
"lineHeight": {
|
||||
"type": "number",
|
||||
"minimum": 1.0
|
||||
},
|
||||
"theme": {
|
||||
"enum": ["dark", "light", "inherit"]
|
||||
},
|
||||
"scrollback": {
|
||||
"type": "number"
|
||||
},
|
||||
"pasteWithCtrlV": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"macOptionIsMeta": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"properties": {
|
||||
"fontFamily": {
|
||||
"title": "Font family",
|
||||
"description": "The font family used to render text.",
|
||||
"$ref": "#/definitions/fontFamily",
|
||||
"default": "monospace"
|
||||
},
|
||||
"fontSize": {
|
||||
"title": "Font size",
|
||||
"description": "The font size used to render text.",
|
||||
"$ref": "#/definitions/fontSize",
|
||||
"default": 13
|
||||
},
|
||||
"lineHeight": {
|
||||
"title": "Line height",
|
||||
"description": "The line height used to render text.",
|
||||
"$ref": "#/definitions/lineHeight",
|
||||
"default": 1.0
|
||||
},
|
||||
"theme": {
|
||||
"title": "Theme",
|
||||
"description": "The theme for the terminal.",
|
||||
"$ref": "#/definitions/theme",
|
||||
"default": "inherit"
|
||||
},
|
||||
"screenReaderMode": {
|
||||
"title": "Screen Reader Mode",
|
||||
"description": "Add accessibility elements for use with screen readers.",
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
},
|
||||
"scrollback": {
|
||||
"title": "Scrollback Buffer",
|
||||
"description": "The amount of scrollback beyond initial viewport",
|
||||
"$ref": "#/definitions/lineHeight",
|
||||
"default": 1000
|
||||
},
|
||||
"shutdownOnClose": {
|
||||
"title": "Shut down on close",
|
||||
"description": "Shut down the session when closing the terminal.",
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
},
|
||||
"closeOnExit": {
|
||||
"title": "Close on exit",
|
||||
"description": "Close the widget when exiting the terminal.",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"pasteWithCtrlV": {
|
||||
"title": "Paste with Ctrl+V",
|
||||
"description": "Enable pasting with Ctrl+V. This can be disabled to use Ctrl+V in the vi editor, for instance. This setting has no effect on macOS, where Cmd+V is available",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"macOptionIsMeta": {
|
||||
"title": "Treat option as meta key on macOS",
|
||||
"description": "Option key on macOS can be used as meta key. This enables to use shortcuts such as option + f to move cursor forward one word",
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
},
|
||||
"cursorBlink": {
|
||||
"title": "Blinking cursor",
|
||||
"description": "Whether to blink the cursor. Changes require reopening the terminal.",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"showStatusBarItem": {
|
||||
"type": "string",
|
||||
"title": "Show the status bar item",
|
||||
"description": "Whether to show the running terminals item in the status bar",
|
||||
"default": "if-any",
|
||||
"oneOf": [
|
||||
{
|
||||
"const": "if-any",
|
||||
"title": "Show if one or more"
|
||||
},
|
||||
{
|
||||
"const": "always",
|
||||
"title": "Always show"
|
||||
},
|
||||
{
|
||||
"const": "never",
|
||||
"title": "Don't show"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"additionalProperties": false,
|
||||
"type": "object"
|
||||
}
|
||||
Reference in New Issue
Block a user