Ai
8 Star 93 Fork 8

zaaack/vscode-markdown-editor

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
package.json 1.79 KB
一键复制 编辑 原始数据 按行查看 历史
zaaack 提交于 2021-04-26 11:42 +08:00 . 0.1.0
{
"name": "markdown-editor",
"displayName": "Markdown Editor",
"icon": "media/logo.png",
"description": "A full-featured WYSIWYG editor for markdown.",
"version": "0.1.0",
"publisher": "zaaack",
"private": true,
"engines": {
"vscode": "^1.47.0"
},
"categories": [
"Programming Languages",
"Other"
],
"keywords": [
"markdown",
"editor",
"wysiwyg",
"markdown-previewer",
"markdown-editor"
],
"activationEvents": [
"onCommand:markdown-editor.openEditor",
"onWebviewPanel:markdown-editor",
"onLanguage:markdown"
],
"repository": {
"type": "git",
"url": "https://github.com/zaaack/vscode-markdown-editor.git"
},
"files": [
"./media",
"./out"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "markdown-editor.openEditor",
"title": "Open with markdown editor",
"category": "markdown-editor"
}
],
"menus": {
"explorer/context": [
{
"when": "resourceLangId == markdown",
"command": "markdown-editor.openEditor",
"group": "navigation"
}
],
"editor/title/context": [
{
"when": "resourceLangId == markdown",
"command": "markdown-editor.openEditor",
"group": "1_open"
}
]
}
},
"scripts": {
"vscode:prepublish": "yarn compile; cd ./media-src; yarn build",
"compile": "tsc -p ./",
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -w -p ./",
"pub": "vsce publish"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^12.12.0",
"@types/vscode": "^1.47.0",
"@typescript-eslint/eslint-plugin": "^4.16.0",
"@typescript-eslint/parser": "^4.16.0",
"eslint": "^7.21.0",
"typescript": "^4.2.2"
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/zane_young/vscode-markdown-editor.git
git@gitee.com:zane_young/vscode-markdown-editor.git
zane_young
vscode-markdown-editor
vscode-markdown-editor
master

搜索帮助