-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
158 lines (158 loc) · 4.23 KB
/
package.json
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
{
"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": "0.0.1",
"engines": {
"vscode": "^1.93.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": "extension.createMajorTag",
"title": "Create Major Version Tag"
},
{
"command": "extension.createMinorTag",
"title": "Create Minor Version Tag"
},
{
"command": "extension.createPatchTag",
"title": "Create Patch Version Tag"
},
{
"command": "extension.openCompareLink",
"title": "Open Compare Link"
},
{
"command": "extension.pushAndCheckBuild",
"title": "Push Changes and Check Build Status"
},
{
"command": "extension.openBranchBuildStatus",
"title": "Open Branch Build Status"
},
{
"command": "extension.openTagBuildStatus",
"title": "Open Tag Build Status"
},
{
"command": "extension.createInitialTag",
"title": "Create Initial Version Tag"
},
{
"command": "gitTagReleaseTracker.showLogs",
"title": "Git Tag Release Tracker: Show extension Logs"
}
],
"configuration": {
"type": "object",
"title": "Git Tag Release Tracker",
"properties": {
"gitTagReleaseTracker.ciProviders": {
"type": "object",
"description": "CI provider configurations",
"default": {
"github": {
"token": "",
"apiUrl": "https://api.github.com"
},
"gitlab": {
"token": "",
"apiUrl": "https://gitlab.com/api/v4"
}
}
}
}
}
},
"icon": "images/icon.png",
"main": "./dist/extension.js",
"scripts": {
"vscode:prepublish": "npm run package",
"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": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.9",
"@types/mock-fs": "^4.13.4",
"@types/node": "22.7.6",
"@types/semver": "^7.5.8",
"@types/sinon": "^17.0.3",
"@types/vscode": "^1.93.1",
"@typescript-eslint/eslint-plugin": "^8.9.0",
"@typescript-eslint/parser": "^8.9.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"@vscode/vsce": "^3.1.1",
"chai": "^5.1.1",
"esbuild": "^0.24.0",
"eslint": "^9.12.0",
"mocha": "^10.7.3",
"mock-fs": "^5.4.0",
"npm-run-all": "^4.1.5",
"sinon": "^19.0.2",
"typescript": "^5.6.3"
},
"dependencies": {
"axios": "^1.7.7",
"semver": "^7.6.3",
"simple-git": "^3.27.0"
},
"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"
}
}