This repository was archived by the owner on Apr 28, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.79 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
{
"name": "github-workflow-updater",
"displayName": "GitHub Workflow Updater",
"description": "Pin GitHub Actions to specific commits for enhanced security",
"version": "0.0.2",
"publisher": "github-workflow-updater",
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"repository": {
"type": "git",
"url": "github:RichardoC/github-workflow-updater-extension"
},
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "github-workflow-updater.updateWorkflow",
"title": "Update GitHub Workflow Actions",
"icon": "$(sync)"
},
{
"command": "github-workflow-updater.configureToken",
"title": "Configure GitHub Token",
"category": "GitHub Workflow Updater"
}
],
"menus": {
"editor/title": [
{
"when": "resourceExtname == .yml || resourceExtname == .yaml",
"command": "github-workflow-updater.updateWorkflow",
"group": "navigation"
}
]
},
"configuration": {
"title": "GitHub Workflow Updater",
"properties": {
"github-workflow-updater.suppressTokenWarning": {
"type": "boolean",
"default": false,
"description": "Suppress warning about missing GitHub token",
"scope": "application"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node --test test/*.test.js"
},
"devDependencies": {
"@types/node": "16.x",
"@types/semver": "^7.7.0",
"@types/vscode": "^1.74.0",
"typescript": "^4.9.4"
},
"dependencies": {
"semver": "^7.5.4",
"yaml": "^2.3.4"
}
}