7 Star 25 Fork 5

g8up / vscode-gitee

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
package.json 2.77 KB
一键复制 编辑 原始数据 按行查看 历史
{
"name": "gitee",
"displayName": "Gitee",
"description": "提供 Gitee 平台操作仓库能力",
"version": "0.0.7",
"icon": "images/gitee.png",
"engines": {
"vscode": "^1.45.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:gitee.addAccessToken",
"onCommand:gitee.removeAccessToken",
"onCommand:gitee.createPrivateRepository",
"onCommand:gitee.createPublicRepository",
"onCommand:gitee.createPublicGist",
"onCommand:gitee.createPrivateGist",
"onCommand:gitee.openRepoPage"
],
"main": "./out/src/extension.js",
"contributes": {
"commands": [
{
"command": "gitee.addAccessToken",
"title": "添加 access token",
"category": "Gitee"
},
{
"command": "gitee.removeAccessToken",
"title": "移除 access token",
"category": "Gitee"
},
{
"command": "gitee.createPrivateRepository",
"title": "创建仓库(私有)",
"category": "Gitee"
},
{
"command": "gitee.createPublicRepository",
"title": "创建仓库(公开)",
"category": "Gitee"
},
{
"command": "gitee.createPublicGist",
"title": "创建代码片段(公开)",
"category": "Gitee"
},
{
"command": "gitee.createPrivateGist",
"title": "创建代码片段(私有)",
"category": "Gitee"
},
{
"command": "gitee.openRepoPage",
"title": "打开仓库 Web 主页",
"category": "Gitee"
}
]
},
"scripts": {
"vscode:prepublish": "npm run -S esbuild-base -- --minify",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run -S esbuild-base -- --sourcemap",
"esbuild-watch": "npm run -S esbuild-base -- --sourcemap --watch",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"test": "node ./node_modules/vscode/bin/test",
"package": "vsce package -o ./out"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^7.0.2",
"@types/node": "^13.11.0",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"esbuild": "^0.12.15",
"eslint": "^6.8.0",
"glob": "^7.1.6",
"mocha": "^7.1.2",
"typescript": "^3.8.3",
"vscode-test": "^1.6.1"
},
"dependencies": {
"@types/vscode": "^1.58.1",
"execa": "^4.0.3",
"isomorphic-fetch": "^2.2.1",
"pretend": "^3.0.0"
},
"publisher": "g8up",
"author": {
"name": "g8up",
"email": "g8up@qq.com"
},
"repository": {
"url": "https://gitee.com/g8up/vscode-gitee"
}
}
JavaScript
1
https://gitee.com/g8up/vscode-gitee.git
git@gitee.com:g8up/vscode-gitee.git
g8up
vscode-gitee
vscode-gitee
dev

搜索帮助