Files
vscode-extension-samples/jupyter-server-provider-sample/package.json
Matt Bierner 73e249b3c1 Migrate all samples to eslint 9
Switches all samples to use eslint 9 with flat configs. I've tried to migrate existing settings as much as possible. However our eslint configs were also inconsistent so I've tried to align these too
2024-10-26 17:44:03 -07:00

38 lines
893 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",
"watch": "tsc -b --watch"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@stylistic/eslint-plugin": "^2.9.0",
"@types/node": "^20",
"@types/vscode": "^1.82.0",
"@vscode/jupyter-extension": "^1.0.0",
"eslint": "^9.13.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.11.0"
}
}