mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
37 lines
896 B
JSON
37 lines
896 B
JSON
{
|
|
"name": "jupyter-server-provider-sample",
|
|
"displayName": "Jupyter Server Provider Sample",
|
|
"description": "Jupyter Notebook Kernel Picker with custom servers using the Jupyter API sample",
|
|
"publisher": "vscode-samples",
|
|
"version": "0.0.1",
|
|
"engines": {
|
|
"vscode": "^1.82.0"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"activationEvents": [
|
|
"onNotebook:jupyter-notebook",
|
|
"onNotebook:interactive"
|
|
],
|
|
"extensionDependencies": [
|
|
"ms-toolsai.jupyter"
|
|
],
|
|
"main": "./out/extension.js",
|
|
"scripts": {
|
|
"vscode:prepublish": "npm run compile",
|
|
"compile": "tsc -b",
|
|
"lint": "eslint src --ext ts",
|
|
"watch": "tsc -b --watch"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^18",
|
|
"@types/vscode": "^1.82.0",
|
|
"@typescript-eslint/eslint-plugin": "^7.14.0",
|
|
"@typescript-eslint/parser": "^7.14.0",
|
|
"@vscode/jupyter-extension": "^1.0.0",
|
|
"eslint": "^7.27.0",
|
|
"typescript": "^5.5.2"
|
|
}
|
|
}
|