{ "name": "gitea-workflow", "displayName": "Gitea Workflow", "description": "Clone from Gitea instances; Create PRs", "version": "1.4.1", "publisher": "computerliebe", "engines": { "vscode": "^1.94.0" }, "repository": { "type": "git", "url": "https://gitea.computerliebe.org/ComputerLiebe/Gitea-Workflow.git" }, "categories": [ "Other" ], "icon": "media/vscode_gitea_plugin.png", "activationEvents": [ "onStartupFinished" ], "main": "./dist/extension.js", "contributes": { "commands": [ { "command": "gitea.createPullRequest", "title": "Create Pull Request", "category": "Gitea" }, { "command": "gitea.authenticate", "title": " Authenticate", "category": "Gitea" }, { "command": "gitea.configure", "title": " Configure URL", "category": "Gitea" }, { "command": "gitea.cloneRepository", "title": " Clone Repository", "category": "Gitea" }, { "command": "gitea.showOpenPullRequests", "title": " Show open Pull Requests", "category": "Gitea" }, { "command": "gitea.createRepository", "title": " Create Repository", "category": "Gitea" } ], "configuration": { "type": "object", "title": "Gitea Extension Configuration", "properties": { "gitea.instances": { "type": "array", "description": "List of Gitea instances and their configurations.", "items": { "type": "object", "properties": { "name": { "type": "string", "description": "Name of the Gitea instance." }, "url": { "type": "string", "description": "URL of the Gitea instance." }, "token": { "type": "string", "description": "Personal Access Token for the Gitea instance." } }, "required": ["name", "url", "token"] }, "default": [] } } } }, "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", "test": "vscode-test" }, "devDependencies": { "@types/mocha": "^10.0.8", "@types/node": "20.x", "@types/vscode": "^1.94.0", "@typescript-eslint/eslint-plugin": "^8.7.0", "@typescript-eslint/parser": "^8.7.0", "@vscode/test-cli": "^0.0.10", "@vscode/test-electron": "^2.4.1", "eslint": "^9.11.1", "ts-loader": "^9.5.1", "typescript": "^5.6.2", "webpack": "^5.95.0", "webpack-cli": "^5.1.4" }, "dependencies": { "axios": "^1.7.7", "open": "^10.1.0", "vscode-nls": "^5.2.0" } }