-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
163 lines (163 loc) · 4.34 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
159
160
161
162
163
{
"name": "pipelines-tasks-devkit",
"displayName": "Microsoft Pipelines Tasks Dev Kit",
"description": "Dev Kit for Azure DevOps pipelines tasks",
"version": "1.0.1",
"publisher": "VladyslavHorbachov",
"engines": {
"vscode": "^1.95.0"
},
"repository": {
"type": "git",
"url": "https://github.com/LeftTwixWand/microsoft-pipelines-tasks-devkit"
},
"license": "MIT",
"icon": "assets/azure-devops.png",
"galleryBanner": {
"color": "#1e1e1e",
"theme": "dark"
},
"keywords": [
"pipelines",
"Azure DevOps",
"tasks",
"Azure",
"DevOps"
],
"homepage": "https://github.com/LeftTwixWand/microsoft-pipelines-tasks-devkit",
"categories": [
"Other"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "tasksDevKit",
"title": "Tasks Dev Kit",
"icon": "$(azure-devops)"
}
]
},
"views": {
"tasksDevKit": [
{
"id": "tasksDevKit.tasks",
"name": "Tasks list",
"type": "tree"
},
{
"id": "tasksDevKit.settings",
"name": "Settings",
"type": "tree"
}
]
},
"viewsWelcome": [
{
"view": "tasksDevKit.settings",
"contents": "In order to upload tasks to your organization, you need to be logged in TFX.\n[Login to TFX](command:tasksDevKit.login)",
"when": "tasksDevKit.tfx.signed-in === false"
},
{
"view": "tasksDevKit.settings",
"contents": "You are logged in to Azure DevOps.\n[Logout](command:tasksDevKit.logout)",
"when": "tasksDevKit.tfx.signed-in === true"
}
],
"authentication": [
{
"id": "azuredevopspat",
"label": "Azure DevOps PAT"
}
],
"commands": [
{
"command": "tasksDevKit.build",
"title": "Build Selected Tasks",
"icon": "$(git-stash)"
},
{
"command": "tasksDevKit.generateDebugProfile",
"title": "Generate Debug Profile",
"icon": "$(debug-alt)"
},
{
"command": "tasksDevKit.test",
"title": "Test Selected Tasks",
"icon": "$(beaker)"
},
{
"command": "tasksDevKit.deploy",
"title": "Deploy Selected Tasks",
"icon": "$(cloud-upload)"
},
{
"command": "tasksDevKit.login",
"title": "Login to Azure DevOps",
"icon": "$(sign-in)"
},
{
"command": "tasksDevKit.logout",
"title": "Logout from Azure DevOps",
"icon": "$(sign-out)"
}
],
"menus": {
"view/title": [
{
"command": "tasksDevKit.build",
"when": "view == tasksDevKit.tasks",
"group": "navigation@1"
},
{
"command": "tasksDevKit.generateDebugProfile",
"when": "view == tasksDevKit.tasks",
"group": "navigation@2"
},
{
"command": "tasksDevKit.test",
"when": "view == tasksDevKit.tasks",
"group": "navigation@3"
},
{
"command": "tasksDevKit.deploy",
"when": "view == tasksDevKit.tasks",
"group": "navigation@4"
}
]
}
},
"scripts": {
"vscode:prepublish": "yarn run package",
"compile": "yarn run check-types && yarn 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": "yarn run check-types && yarn run lint && node esbuild.js --production",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "yarn run compile-tests && yarn run compile && yarn run lint",
"check-types": "tsc --noEmit",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "22.10.2",
"@types/vscode": "^1.96.0",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.18.2",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"esbuild": "^0.24.0",
"eslint": "^9.16.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"typescript": "^5.7.2"
},
"dependencies": {
"fs": "^0.0.1-security"
}
}