mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-22 01:29:04 +01:00
Test extension for notebook
This commit is contained in:
46
extensions/notebook-test/package.json
Normal file
46
extensions/notebook-test/package.json
Normal file
@@ -0,0 +1,46 @@
|
||||
{
|
||||
"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": "./out/extension",
|
||||
"categories": [
|
||||
"Other"
|
||||
],
|
||||
"activationEvents": [
|
||||
"*"
|
||||
],
|
||||
"contributes": {
|
||||
"notebookProvider": [
|
||||
{
|
||||
"viewType": "jupyter",
|
||||
"displayName": "Jupyter",
|
||||
"selector": [
|
||||
{
|
||||
"filenamePattern": "*.test.ipynb"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"scripts": {
|
||||
"compile": "tsc -p ./",
|
||||
"watch": "tsc -watch -p ./"
|
||||
},
|
||||
"dependencies": {
|
||||
"vscode-extension-telemetry": "0.1.1",
|
||||
"vscode-nls": "^4.0.0",
|
||||
"typescript": "^3.6.4"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user