vscode-minxing-extension
Version:
适用于敏行移动平台的开发工具,包含创建应用模板,WiFi真机同步,日志输出等功能
145 lines (144 loc) • 4.51 kB
JSON
{
"name": "vscode-minxing-extension",
"displayName": "Minxing-devtools",
"description": "适用于敏行移动平台的开发工具,包含创建应用模板,WiFi真机同步,日志输出等功能",
"keywords": [
"Minxing",
"真机调试",
"WiFi同步",
"应用模板",
"日志输出"
],
"version": "0.0.25",
"publisher": "minxing",
"engines": {
"vscode": "^1.17.0"
},
"categories": [
"Other"
],
"author": "yinhang",
"repository": "https://github.com/dehuinet/vscode-minxing-extension",
"license": "GPL-3.0",
"main": "./out/extension",
"activationEvents": [
"*"
],
"contributes": {
"commands": [
{
"command": "Minxing.mainEntry",
"title": "敏行",
"category": "Minxing"
},
{
"command": "Minxing.addProjectTemplate",
"title": "新增项目模版",
"category": "Minxing",
"description": "add project template"
},
{
"command": "Minxing.addPageTemplate",
"title": "新增页面框架",
"category": "Minxing",
"description": "add page template"
},
{
"command": "Minxing.build",
"title": "打包",
"category": "Minxing",
"description": "build to Minxing"
},
{
"command": "Minxing.getWifiInfo",
"title": "查看IP和端口",
"category": "Minxing",
"description": "get local IP and port"
},
{
"command": "Minxing.getWifiLog",
"title": "查看wifi日志",
"category": "Minxing",
"description": "get wifi log"
},
{
"command": "Minxing.syncAll",
"title": "wifi全量同步",
"category": "Minxing",
"description": "sync all by wifi"
},
{
"command": "Minxing.sync",
"title": "wifi增量同步",
"category": "Minxing",
"description": "smart sync by wifi"
},
{
"command": "Minxing.webPreview",
"title": "wifi web页面预览",
"category": "Minxing",
"description": "wifi web preview"
},
{
"command": "Minxing.clearTempCache",
"title": "清除临时文件缓存",
"category": "Minxing",
"description": "clear temp cache"
},
{
"command": "Minxing.addVueSeed",
"title": "新建vue项目",
"category": "Minxing",
"description": "new vue seed project"
}
],
"menus": {
"explorer/context": [
{
"command": "Minxing.mainEntry",
"group": "navigation"
}
],
"editor/context": [
{
"command": "Minxing.mainEntry",
"group": "navigation"
}
]
},
"configuration": {
"type": "object",
"title": "Minxing Devtools configuration",
"properties": {
"Minxing.vue-seed-origin": {
"type": [
"string",
"null"
],
"default": null,
"description": "模版仓库来源"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"dependencies": {
"co": "^4.6.0",
"debug": "^3.1.0",
"minxing-devtools-core": "^1.0.18",
"source-map-support": "^0.5.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.6",
"@types/node": "^7.0.43",
"@types/mocha": "^2.2.42"
}
}