1 Star 1 Fork 1

Sober / imgtogitee

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
package.json 3.03 KB
一键复制 编辑 原始数据 按行查看 历史
 千山 提交于 2023-01-04 10:29 . no commit message
{
"name": "imgtogitee",
"displayName": "ImgToGitee",
"description": "图片上传到gitee仓库",
"publisher": "kudsu",
"author": "千山慕雪",
"version": "1.0.1",
"icon": "asserts/002.jpeg",
"license": "MIT",
"repository": {
"url": "https://gitee.com/kudsu/imgtogitee"
},
"keywords": [
"Picture",
"img",
"markdown",
"git",
"gitee",
"md",
"up",
"upload"
],
"engines": {
"vscode": "^1.72.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:markdown"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "imgtogitee.getemo",
"title": "添加随机表情"
},
{
"command": "imgtogitee.paste",
"title": "上传剪切板图片"
},
{
"command": "imgtogitee.pasteLocal",
"title": "上传本地板图片"
}
],
"menus": {
"editor/context": [
{
"when": "resourceLangId == markdown",
"command": "imgtogitee.getemo",
"group": "imgtogitee@1"
},
{
"when": "resourceLangId == markdown",
"command": "imgtogitee.paste",
"group": "imgtogitee@2"
},
{
"when": "resourceLangId == markdown",
"command": "imgtogitee.pasteLocal",
"group": "imgtogitee@3"
}
]
},
"keybindings": [
{
"command": "imgtogitee.getemo",
"key": "ctrl+numpad1",
"when": "editorTextFocus"
},
{
"command": "imgtogitee.paste",
"key": "ctrl+numpad2",
"when": "editorTextFocus"
},
{
"command": "imgtogitee.pasteLocal",
"key": "ctrl+numpad3",
"when": "editorTextFocus"
}
],
"configuration": {
"type": "object",
"title": "Code插件demo",
"properties": {
"imgtogitee.gitee_token": {
"type": "string",
"default": "",
"description": "gitee_token"
},
"imgtogitee.gitee_url": {
"type": "string",
"default": "",
"description": "gitee_url"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.72.0",
"@types/glob": "^8.0.0",
"@types/mocha": "^10.0.0",
"@types/node": "16.x",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "^8.24.0",
"glob": "^8.0.3",
"mocha": "^10.0.0",
"typescript": "^4.8.4",
"ts-loader": "^9.4.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"@vscode/test-electron": "^2.1.5"
}
}
TypeScript
1
https://gitee.com/kudsu/imgtogitee.git
git@gitee.com:kudsu/imgtogitee.git
kudsu
imgtogitee
imgtogitee
master

搜索帮助