Files
vscode-extension-samples/jupyter-server-provider-sample/package.json
Matt Bierner 7628cfc947 Bump eslint versions
Avoids a warning when running the linter with TS 5.5
2024-06-27 13:33:48 -07:00

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"
}
}