mirror of
https://gitea.computerliebe.org/ComputerLiebe_ORG_private/Gitea-VSCode-Clone-Plugin.git
synced 2025-07-04 03:53:42 +00:00
initialize Plugin
This commit is contained in:
68
gitea-git-clone/package.json
Normal file
68
gitea-git-clone/package.json
Normal file
@ -0,0 +1,68 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
],
|
||||
"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"
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user