vscode-markdown-notebook/package.json

67 строки
1.6 KiB
JSON
Исходник Обычный вид История

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-11-03 11:38:53 +03:00
"version": "0.0.26",
2020-06-16 22:06:35 +03:00
"preview": true,
2020-06-16 16:31:12 +03:00
"engines": {
2021-05-12 20:26:09 +03:00
"vscode": "^1.57.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": [
2021-06-15 02:49:39 +03:00
"onNotebook:markdown-notebook"
2020-06-16 16:31:12 +03:00
],
"main": "./out/extension.js",
"browser": "./out/extension-bundle.js",
"capabilities": {
"virtualWorkspaces": true,
"untrustedWorkspaces": {
"supported": true
}
},
2020-06-16 16:31:12 +03:00
"contributes": {
2021-05-12 20:26:09 +03:00
"notebooks": [
2020-06-16 16:31:12 +03:00
{
2021-06-09 21:48:17 +03:00
"type": "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 && yarn run bundle",
2020-06-16 16:31:12 +03:00
"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",
"bundle": "npx esbuild src/extension.ts --bundle --outfile=out/extension-bundle.js --platform=node --external:vscode"
2020-06-16 16:31:12 +03:00
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^7.0.2",
"@types/node": "^13.11.0",
"@types/vscode": "1.57",
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",
"esbuild": "^0.12.23",
2020-10-03 01:28:51 +03:00
"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
}