Add EmoSet training and evaluation
This commit is contained in:
@@ -0,0 +1,64 @@
|
||||
{
|
||||
"name": "@jupyterlab/lsp-extension",
|
||||
"version": "4.5.1",
|
||||
"description": "",
|
||||
"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,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
|
||||
"schema/*.json",
|
||||
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
|
||||
"style/index.js",
|
||||
"src/**/*.{ts,tsx}"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "tsc -b",
|
||||
"build:all": "npm run build",
|
||||
"clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
|
||||
"watch": "tsc -b --watch"
|
||||
},
|
||||
"dependencies": {
|
||||
"@jupyterlab/application": "^4.5.1",
|
||||
"@jupyterlab/apputils": "^4.6.1",
|
||||
"@jupyterlab/lsp": "^4.5.1",
|
||||
"@jupyterlab/running": "^4.5.1",
|
||||
"@jupyterlab/settingregistry": "^4.5.1",
|
||||
"@jupyterlab/translation": "^4.5.1",
|
||||
"@jupyterlab/ui-components": "^4.5.1",
|
||||
"@lumino/coreutils": "^2.2.2",
|
||||
"@lumino/polling": "^2.1.5",
|
||||
"@lumino/signaling": "^2.1.5",
|
||||
"@rjsf/utils": "^5.13.4",
|
||||
"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,69 @@
|
||||
{
|
||||
"jupyter.lab.setting-icon": "ui-components:code-check",
|
||||
"jupyter.lab.setting-icon-label": "Language integration",
|
||||
"jupyter.lab.transform": true,
|
||||
"title": "Language Servers (Experimental)",
|
||||
"description": "Language Server Protocol settings.",
|
||||
"type": "object",
|
||||
"definitions": {
|
||||
"languageServer": {
|
||||
"type": "object",
|
||||
"default": {
|
||||
"configuration": {},
|
||||
"rank": 50
|
||||
},
|
||||
"properties": {
|
||||
"configuration": {
|
||||
"title": "Language Server Configurations",
|
||||
"description": "Configuration to be sent to language server over LSP when initialized: see the specific language server's documentation for more",
|
||||
"type": "object",
|
||||
"default": {},
|
||||
"patternProperties": {
|
||||
".*": {
|
||||
"type": ["number", "string", "boolean", "object", "array"]
|
||||
}
|
||||
},
|
||||
"additionalProperties": true
|
||||
},
|
||||
"rank": {
|
||||
"title": "Rank of the server",
|
||||
"description": "When multiple servers match specific document/language, the server with the highest rank will be used",
|
||||
"type": "number",
|
||||
"default": 50,
|
||||
"minimum": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"properties": {
|
||||
"activate": {
|
||||
"title": "Activate",
|
||||
"description": "Enable or disable the language server services.",
|
||||
"enum": ["off", "on"],
|
||||
"default": "off"
|
||||
},
|
||||
"languageServers": {
|
||||
"title": "Language Server",
|
||||
"description": "Language-server specific configuration, keyed by implementation",
|
||||
"type": "object",
|
||||
"default": {},
|
||||
"patternProperties": {
|
||||
".*": {
|
||||
"$ref": "#/definitions/languageServer"
|
||||
}
|
||||
}
|
||||
},
|
||||
"setTrace": {
|
||||
"title": "Ask servers to send trace notifications",
|
||||
"enum": ["off", "messages", "verbose"],
|
||||
"default": "off",
|
||||
"description": "Whether to ask server to send logs with execution trace (for debugging). Accepted values are: \"off\", \"messages\", \"verbose\". Servers are allowed to ignore this request."
|
||||
},
|
||||
"logAllCommunication": {
|
||||
"title": "Log communication",
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Enable or disable the logging feature of the language servers."
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user