-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
181 lines (181 loc) · 5.19 KB
/
package.json
File metadata and controls
181 lines (181 loc) · 5.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
{
"name": "git-tag-release-tracker",
"displayName": "Git Tag Release Tracker",
"description": "Track Git tags, releases, and CI build statuses for your projects. Supports GitHub and GitLab integration.",
"author": {
"name": "Daniel Christian Schroeter"
},
"publisher": "DanielChristianSchroeter",
"version": "3.0.4",
"engines": {
"vscode": "^1.105.1"
},
"categories": [
"SCM Providers",
"Other"
],
"repository": {
"type": "git",
"url": "https://github.com/danielchristianschroeter/vscode-git-tag-release-tracker"
},
"keywords": [
"git",
"tag",
"release",
"version",
"ci",
"build",
"status",
"github",
"gitlab",
"semver",
"semantic versioning",
"automation",
"devops",
"workflow",
"pipeline",
"repository",
"commit",
"branch",
"productivity",
"collaboration"
],
"activationEvents": [
"workspaceContains:.git"
],
"contributes": {
"commands": [
{
"command": "gitTagReleaseTracker.showLogs",
"title": "Git Tag Release Tracker: Show Logs",
"category": "Git Tag Release Tracker"
},
{
"command": "extension.createMajorTag",
"title": "Create Major Tag",
"category": "Git Tag Release Tracker"
},
{
"command": "extension.createMinorTag",
"title": "Create Minor Tag",
"category": "Git Tag Release Tracker"
},
{
"command": "extension.createPatchTag",
"title": "Create Patch Tag",
"category": "Git Tag Release Tracker"
},
{
"command": "extension.createInitialTag",
"title": "Create Initial Tag",
"category": "Git Tag Release Tracker"
},
{
"command": "extension.openCompareLink",
"title": "Open Compare Link",
"category": "Git Tag Release Tracker"
},
{
"command": "extension.pushAndCheckBuild",
"title": "Push and Check Build",
"category": "Git Tag Release Tracker"
},
{
"command": "extension.refreshDashboard",
"title": "Refresh Dashboard",
"category": "Git Tag Release Tracker"
}
],
"configuration": {
"title": "Git Tag Release Tracker",
"properties": {
"gitTagReleaseTracker.ciProviders": {
"type": "object",
"description": "Configuration for CI/CD providers.",
"default": {
"github": {
"token": "",
"apiUrl": "https://api.github.com"
},
"gitlab": {
"token": "",
"apiUrl": "https://gitlab.com/api/v4"
}
},
"additionalProperties": {
"type": "object",
"properties": {
"token": {
"type": "string",
"description": "Your personal access token for the CI provider."
},
"apiUrl": {
"type": "string",
"description": "The API base URL for the CI provider."
}
}
}
}
}
}
},
"icon": "images/icon.png",
"main": "./dist/extension.js",
"scripts": {
"vscode:prepublish": "npm run esbuild-base -- --minify",
"compile": "npm run check-types && npm run lint && node esbuild.js",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "npm run check-types && npm run lint && node esbuild.js --production",
"package-extension": "vsce package",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"check-types": "tsc --noEmit",
"lint": "eslint src",
"test": "node ./out/test/runTest.js",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=dist/extension.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"test-compile": "tsc -p ./"
},
"extensionDependencies": [
"vscode.git"
],
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/mock-fs": "^4.13.4",
"@types/node": "25.5.2",
"@types/semver": "^7.7.1",
"@types/sinon": "^21.0.0",
"@types/vscode": "^1.105.1",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.0",
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^2.5.2",
"@vscode/vsce": "^3.7.1",
"chai": "^6.2.2",
"esbuild": "^0.27.4",
"eslint": "^10.1.0",
"mocha": "^11.7.5",
"mock-fs": "^5.5.0",
"npm-run-all": "^4.1.5",
"sinon": "^21.0.3",
"typescript": "^6.0.2"
},
"dependencies": {
"axios": "^1.15.0",
"semver": "^7.7.4",
"simple-git": "^3.35.2"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/danielchristianschroeter/vscode-git-tag-release-tracker/issues"
},
"homepage": "https://github.com/danielchristianschroeter/vscode-git-tag-release-tracker#readme",
"pricing": "Free",
"sponsor": {
"url": "https://github.com/sponsors/danielchristianschroeter"
}
}