HbuilderX 插件开发-模板创建
{
"id": "SL-HbuilderX-Tool",
"name": "SL-HbuilderX-Tool",
"description": "快速创建html,vue2模板",
"displayName": "SL-HbuilderX-Tool",
"version": "1.0.1",
"publisher": "SL",
"engines": {
"HBuilderX": "^3.8.0"
},
"categories": [
"Other"
],
"keywords": [
"html",
"vue2",
"template"
],
"main": "./extension",
"activationEvents": [
"onCommand:extension.html",
"onCommand:extension.vue2"
],
"contributes": {
"commands": [{
"command": "extension.html",
"title": "创建HTML模板"
},{
"command": "extension.vue2",
"title": "创建VUE2模板"
}],
"menus": {
"editor/context": [{
"id": "foo",
"title": "SL-HbuilderX-Tool",
"group": "goto"
},
{
"command": "extension.html",
"group": "foo@1",
"when": "editorTextFocus"
},
{
"command": "extension.vue2",
"group": "foo@1",
"when": "editorTextFocus"
},
{
"group": "goto"
}
]
}
},
"extensionDependencies": [
"plugin-manager"
],
"dependencies": {}
}