-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.64 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.64 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
{
"name": "as-devops",
"displayName": "AS VS Code DevOps",
"description": "DevOps productivity tools for VS Code",
"version": "1.0.1",
"publisher": "appsoftwareltd",
"license": "Elastic-2.0",
"icon": "images/icon.png",
"homepage": "https://github.com/appsoftwareltd/as-vscode-devops",
"repository": {
"type": "git",
"url": "https://github.com/appsoftwareltd/as-vscode-devops.git"
},
"bugs": {
"url": "https://github.com/appsoftwareltd/as-vscode-devops/issues"
},
"keywords": [
"sops",
"encryption",
"decryption",
"secrets",
"devops"
],
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"galleryBanner": {
"color": "#1e1e2e",
"theme": "dark"
},
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "sops.encrypt",
"title": "SOPS: Encrypt File"
},
{
"command": "sops.decrypt",
"title": "SOPS: Decrypt File"
}
],
"menus": {
"explorer/context": [
{
"command": "sops.encrypt",
"group": "sops@1",
"when": "resourceScheme == file && !explorerResourceIsFolder"
},
{
"command": "sops.decrypt",
"group": "sops@2",
"when": "resourceScheme == file && !explorerResourceIsFolder"
}
]
}
},
"scripts": {
"build": "tsc -p ./",
"watch": "tsc --watch -p ./",
"package": "npm run build && vsce package"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/vscode": "^1.85.0",
"@vscode/vsce": "^3.0.0",
"typescript": "^5.3.0"
}
}