2020-06-16 16:31:12 +03:00
|
|
|
{
|
2020-06-16 22:06:35 +03:00
|
|
|
"name": "vscode-markdown-notebook",
|
|
|
|
"publisher": "ms-vscode",
|
2020-06-16 22:59:44 +03:00
|
|
|
"displayName": "Markdown Notebook",
|
2020-06-16 22:06:35 +03:00
|
|
|
"description": "An extension for editing markdown files in VS Code notebooks",
|
2021-05-07 19:22:49 +03:00
|
|
|
"version": "0.0.19",
|
2020-06-16 22:06:35 +03:00
|
|
|
"preview": true,
|
2020-06-16 16:31:12 +03:00
|
|
|
"enableProposedApi": true,
|
|
|
|
"engines": {
|
2021-02-15 20:39:25 +03:00
|
|
|
"vscode": "^1.54.0"
|
2020-06-16 16:31:12 +03:00
|
|
|
},
|
2020-06-16 22:37:16 +03:00
|
|
|
"repository": {
|
|
|
|
"url": "https://github.com/microsoft/vscode-markdown-notebook"
|
|
|
|
},
|
2020-06-16 16:31:12 +03:00
|
|
|
"categories": [
|
|
|
|
"Other"
|
|
|
|
],
|
|
|
|
"activationEvents": [
|
|
|
|
"*"
|
|
|
|
],
|
|
|
|
"main": "./out/extension.js",
|
2021-05-07 19:22:23 +03:00
|
|
|
"capabilities": {
|
|
|
|
"virtualWorkspaces": true,
|
|
|
|
"untrustedWorkspaces": {
|
|
|
|
"supported": true
|
|
|
|
}
|
|
|
|
},
|
2020-06-16 16:31:12 +03:00
|
|
|
"contributes": {
|
|
|
|
"notebookProvider": [
|
|
|
|
{
|
2020-06-22 20:34:13 +03:00
|
|
|
"viewType": "markdown-notebook",
|
2020-06-16 22:06:35 +03:00
|
|
|
"displayName": "Markdown Notebook",
|
2020-06-16 20:27:24 +03:00
|
|
|
"priority": "option",
|
2020-06-16 16:31:12 +03:00
|
|
|
"selector": [
|
|
|
|
{
|
|
|
|
"filenamePattern": "*.{md,markdown}"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"vscode:prepublish": "yarn run compile",
|
|
|
|
"compile": "tsc -p ./",
|
|
|
|
"lint": "eslint src --ext ts",
|
2020-06-16 22:34:36 +03:00
|
|
|
"deploy": "npx vsce publish --noVerify",
|
2020-06-16 16:31:12 +03:00
|
|
|
"watch": "tsc -watch -p ./",
|
|
|
|
"pretest": "yarn run compile && yarn run lint",
|
|
|
|
"test": "node ./out/test/runTest.js"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/glob": "^7.1.1",
|
|
|
|
"@types/mocha": "^7.0.2",
|
|
|
|
"@types/node": "^13.11.0",
|
2020-10-19 06:13:48 +03:00
|
|
|
"@types/vscode": "^1.50.0",
|
2020-06-16 16:31:12 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "^2.30.0",
|
2020-10-03 01:28:51 +03:00
|
|
|
"@typescript-eslint/parser": "^2.30.0",
|
|
|
|
"eslint": "^6.8.0",
|
2020-06-16 16:31:12 +03:00
|
|
|
"glob": "^7.1.6",
|
|
|
|
"mocha": "^7.1.2",
|
|
|
|
"typescript": "^3.8.3",
|
|
|
|
"vscode-test": "^1.3.0"
|
|
|
|
}
|
2021-05-07 19:22:49 +03:00
|
|
|
}
|