mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-18 14:19:42 +01:00
73 lines
1.6 KiB
JSON
73 lines
1.6 KiB
JSON
{
|
|
"name": "notebook-test",
|
|
"displayName": "Notebook Test",
|
|
"description": "Notebook test for execution and outputs",
|
|
"extensionKind": [
|
|
"ui",
|
|
"workspace"
|
|
],
|
|
"version": "1.0.0",
|
|
"publisher": "vscode",
|
|
"icon": "icon.png",
|
|
"enableProposedApi": true,
|
|
"license": "MIT",
|
|
"engines": {
|
|
"vscode": "^1.40.0"
|
|
},
|
|
"main": "./dist/extension",
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"activationEvents": [
|
|
"*"
|
|
],
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "notebook.saveToMarkdown",
|
|
"title": "Notebook: Save to Markdown"
|
|
}
|
|
],
|
|
"notebookProvider": [
|
|
{
|
|
"viewType": "jupyter",
|
|
"displayName": "Jupyter",
|
|
"selector": [
|
|
{
|
|
"filenamePattern": "*.ipynb",
|
|
"excludeFileNamePattern": "*.test.ipynb"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"viewType": "jupyterTest",
|
|
"displayName": "Jupyter Test",
|
|
"selector": [
|
|
{
|
|
"filenamePattern": "*.test.ipynb"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"compile": "tsc -p ./",
|
|
"watch": "npm run build-lib && gulp watch-extension:notebook-test",
|
|
"build": "webpack-cli --config extension.webpack.config.js",
|
|
"build-lib": "webpack --mode production"
|
|
},
|
|
"dependencies": {
|
|
"@jupyter-widgets/base": "^2.0.2",
|
|
"@jupyter-widgets/controls": "^1.5.3",
|
|
"@lumino/widgets": "^1.3.0",
|
|
"typescript": "^3.6.4",
|
|
"vscode-extension-telemetry": "0.1.1",
|
|
"vscode-nls": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"webpack-cli": "^3.3.10",
|
|
"css-loader": "^3.4.1",
|
|
"style-loader": "^1.1.2"
|
|
}
|
|
}
|