2019-04-09 14:37:58 +02:00
|
|
|
{
|
2019-07-28 20:37:06 +02:00
|
|
|
"name": "gitea-vscode",
|
|
|
|
"displayName": "Gitea-VSCode",
|
|
|
|
"description": "Gitea Issue Tracker for vs-code",
|
|
|
|
"publisher": "IJustDev",
|
2019-07-29 09:43:37 +02:00
|
|
|
"version": "0.0.8",
|
2019-07-28 20:37:06 +02:00
|
|
|
"engines": {
|
|
|
|
"vscode": "^1.32.0"
|
2019-07-04 14:45:46 +02:00
|
|
|
},
|
2019-07-28 20:37:06 +02:00
|
|
|
"categories": [
|
|
|
|
"Other"
|
2019-07-04 14:45:46 +02:00
|
|
|
],
|
2019-07-28 20:37:06 +02:00
|
|
|
"activationEvents": [
|
|
|
|
"onView:open-issues",
|
|
|
|
"onCommand:giteaIssues.initRepo",
|
|
|
|
"onCommand:giteaIssues.refreshIssues"
|
|
|
|
],
|
|
|
|
"main": "./out/extension.js",
|
2019-07-29 09:43:37 +02:00
|
|
|
"icon": "./resources/icon.png",
|
2019-07-28 20:37:06 +02:00
|
|
|
"contributes": {
|
|
|
|
"viewsContainers": {
|
|
|
|
"activitybar": [
|
|
|
|
{
|
|
|
|
"id": "issue-explorer",
|
|
|
|
"title": "Gitea-Issues",
|
|
|
|
"icon": "media/issue.svg"
|
|
|
|
}
|
|
|
|
]
|
2019-07-04 14:45:46 +02:00
|
|
|
},
|
2019-07-28 20:37:06 +02:00
|
|
|
"views": {
|
|
|
|
"issue-explorer": [
|
|
|
|
{
|
|
|
|
"id": "open-issues",
|
|
|
|
"name": "Open Issues"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "closed-issues",
|
|
|
|
"name": "Closed Issues"
|
|
|
|
}
|
|
|
|
]
|
2019-07-04 14:45:46 +02:00
|
|
|
},
|
2019-07-28 20:37:06 +02:00
|
|
|
"commands": [
|
|
|
|
{
|
|
|
|
"command": "giteaIssues.openIssue",
|
|
|
|
"title": "Show"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "giteaIssues.refreshIssues",
|
|
|
|
"title": "Refresh",
|
|
|
|
"icon": {
|
|
|
|
"dark": "resources/dark/refresh.svg",
|
|
|
|
"light": "resources/light/refresh.svg"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"menus": {
|
|
|
|
"view/title": [
|
|
|
|
{
|
|
|
|
"command": "giteaIssues.refreshIssues",
|
|
|
|
"group": "navigation",
|
|
|
|
"when": "view == open-issues"
|
|
|
|
}
|
|
|
|
]
|
2019-07-04 14:45:46 +02:00
|
|
|
},
|
2019-07-28 20:37:06 +02:00
|
|
|
"configuration": {
|
|
|
|
"title": "Gitea",
|
|
|
|
"properties": {
|
|
|
|
"gitea.token": {
|
|
|
|
"scope": "application",
|
|
|
|
"type": "string",
|
|
|
|
"default": "",
|
|
|
|
"description": "The token for the gitea server."
|
|
|
|
},
|
|
|
|
"gitea.domain": {
|
|
|
|
"scope": "resource",
|
|
|
|
"type": "string",
|
|
|
|
"default": "",
|
|
|
|
"description": "The remote gitea instance's domain."
|
|
|
|
},
|
|
|
|
"gitea.owner": {
|
|
|
|
"scope": "resource",
|
|
|
|
"type": "string",
|
|
|
|
"default": "",
|
|
|
|
"description": "The username for the repository."
|
|
|
|
},
|
|
|
|
"gitea.repo": {
|
|
|
|
"scope": "resource",
|
|
|
|
"type": "string",
|
|
|
|
"default": "",
|
|
|
|
"description": "The repository name."
|
|
|
|
},
|
|
|
|
"gitea.ssl": {
|
|
|
|
"scope": "resource",
|
|
|
|
"type": "boolean",
|
|
|
|
"default": true,
|
|
|
|
"description": "If https should be used or not."
|
|
|
|
}
|
|
|
|
}
|
2019-07-04 14:45:46 +02:00
|
|
|
}
|
2019-07-28 20:37:06 +02:00
|
|
|
},
|
|
|
|
"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"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/axios": "^0.14.0",
|
|
|
|
"@types/mocha": "^2.2.42",
|
|
|
|
"@types/node": "^10.12.21",
|
|
|
|
"tslint": "^5.12.1",
|
|
|
|
"typescript": "^3.3.1",
|
|
|
|
"vscode": "^1.1.28"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"axios": "^0.18.1",
|
|
|
|
"marked": "^0.6.2"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "github",
|
|
|
|
"url": "https://github.com/IJustdev/Gitea-VSCode.git"
|
|
|
|
},
|
|
|
|
"license": "MIT"
|
|
|
|
}
|