-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
140 lines (140 loc) · 3.58 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
{
"name": "sops-edit",
"displayName": "SOPS easy edit",
"description": "Never again worry about encrypting, decrypting or accidentally committing decrypted files.",
"version": "1.0.0",
"publisher": "ShipitSmarter",
"author": {
"name": "ShipitSmarter",
"url": "https://github.com/ShipitSmarter"
},
"contributors": [
{
"name": "Bram van der Horn",
"url": "https://github.com/bvanderhorn"
},
{
"name": "Jeffrey Tummers",
"url": "https://github.com/ThumNet"
}
],
"engines": {
"vscode": "^1.78.0"
},
"categories": [
"Other"
],
"keywords": [
"ShipitSmarter",
"SOPS",
"easy",
"edit",
"update",
"encrypt",
"decrypt",
"auto"
],
"activationEvents": [
"workspaceContains:**/.sops.yaml"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "sops-edit.direct-edit",
"title": "SOPS: edit directly"
},
{
"command": "sops-edit.decrypt-editor",
"title": "Decrypt"
},
{
"command": "sops-edit.encrypt-editor",
"title": "Encrypt"
}
],
"menus": {
"explorer/context": [
{
"command": "sops-edit.direct-edit",
"when": "resourceFilename =~ /^[\\s\\S]*\\.(yaml|yml|json|env|ini|txt)$/",
"group": "sops-edit"
}
],
"editor/title": [
{
"when": "sops-edit.isEncrypted",
"command": "sops-edit.decrypt-editor",
"group": "navigation"
},
{
"when": "sops-edit.isEncryptable",
"command": "sops-edit.encrypt-editor",
"group": "navigation"
}
]
},
"configuration": {
"title": "SOPS Easy Edit",
"properties": {
"sops-edit.tempFilePreExtension": {
"type": "string",
"default": "tmp",
"description": "Pre-extension added to temporary decrypted files; example: test.enc.yaml => test.enc.tmp.yaml (default: 'tmp')"
},
"sops-edit.onlyUseButtons": {
"type": "boolean",
"default": false,
"description": "Check this checkbox if you just want to use the decrypt/encrypt buttons instead of the auto-decrypt/encrypt"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"deploy": "vsce publish"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/glob": "^7.2.0",
"@types/ini": "^1.3.31",
"@types/mocha": "^9.1.0",
"@types/node": "^14.18.47",
"@types/sinon": "^10.0.15",
"@types/vscode": "^1.78.0",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"@vscode/test-electron": "^2.1.2",
"@vscode/vsce": "^2.19.0",
"eslint": "^8.9.0",
"glob": "^7.2.0",
"sinon": "^15.0.4",
"typescript": "^4.5.5"
},
"repository": {
"type": "git",
"url": "https://github.com/ShipitSmarter/vscode-sops-edit"
},
"galleryBanner": {
"color": "#1c2237",
"theme": "dark"
},
"icon": "img/sops_easy_edit_logo.png",
"dependencies": {
"@types/vscode": "^1.78.0",
"@vscode/vsce": "^2.19.0",
"chai": "^4.3.7",
"child_process": "^1.0.2",
"fs": "^0.0.1-security",
"ini": "^4.1.0",
"mocha": "^10.2.0",
"yaml": "^2.2.2"
}
}