Gitea-Workflow/gitea-git-clone/package.json
Peter a23b61758b * feat(extension.ts): add support for cloning Gitea repositories via SSH
* fix(package.json): change command title from "Gitea: Configure" to "Gitea: Configure URL"
* feat(extension.ts): add command "Gitea: Clone Repository" for cloning Gitea repositories
2024-10-20 19:27:49 +02:00

73 lines
1.8 KiB
JSON

{
"name": "gitea-git-clone",
"displayName": "Gitea Git Clone",
"description": "",
"version": "0.0.1",
"engines": {
"vscode": "^1.94.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "gitea.authenticate",
"title": "Gitea: Authenticate"
},
{
"command": "gitea.configure",
"title": "Gitea: Configure URL"
},
{
"command": "gitea.cloneRepository",
"title": "Gitea: Clone Repository"
}
],
"configuration": {
"properties": {
"gitea.instanceUrl": {
"type": "string",
"default": "https://your-gitea-instance.com",
"description": "URL der Gitea Instanz"
},
"gitea.personalAccessToken": {
"type": "string",
"description": "Personal Access Token für Gitea",
"secret": true
}
}
}
},
"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"
}
}