1 Star 0 Fork 16

cxszbd/vscode-create-project

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
package.json 1.83 KB
一键复制 编辑 原始数据 按行查看 历史
zy 提交于 2022-09-09 12:08 . 在资源管理器内增加项目操作区
{
"name": "vscode-create-project",
"displayName": "vscode-create-project",
"description": "",
"version": "0.0.1",
"publisher": "kylin",
"engines": {
"vscode": "^1.54.3"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "project.createProject",
"title": "%language.create-project%",
"category": "PROJECT",
"icon": {
"light": "static/files/create.svg",
"dark": "static/files/create-bababa.svg"
}
}
],
"menus": {
"editor/title": [
{
"command": "project.createProject",
"group": "navigation@0"
}
]
},
"views": {
"explorer": [
{
"type": "webview",
"id": "project.operationView",
"name": "%language.operationProject%"
}
]
}
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src --ext ts"
},
"dependencies": {
"@types/async-lock": "^1.1.3",
"@types/fs-extra": "^9.0.13",
"@types/md5": "^2.3.2",
"@types/xml2js": "^0.4.9",
"async-lock": "^1.3.0",
"autoprefixer": "^9",
"core-js": "^3.6.5",
"fs-extra": "^10.0.0",
"generator-code": "^1.6.5",
"md5": "^2.2.1",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.0",
"@types/node": "14.x",
"@types/vscode": "^1.54.0",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"@vscode/test-electron": "^2.1.2",
"eslint": "^8.9.0",
"glob": "^7.2.0",
"mocha": "^9.2.1",
"typescript": "^4.5.5"
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/cxdgrck/vscode-create-project.git
git@gitee.com:cxdgrck/vscode-create-project.git
cxdgrck
vscode-create-project
vscode-create-project
master

搜索帮助