-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.68 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.68 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
{
"name": "wrenchit",
"displayName": "WrenchIT",
"description": "Utilidades rápidas: codificar/decodificar Base64 y limpiar/formatear JSON de Grafana",
"version": "0.1.0",
"publisher": "wrenchit",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other",
"Formatters"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "wrenchit.encodeBase64",
"title": "WrenchIT: Codificar en Base64"
},
{
"command": "wrenchit.decodeBase64",
"title": "WrenchIT: Decodificar Base64"
},
{
"command": "wrenchit.fixJson",
"title": "WrenchIT: Limpiar y formatear JSON (Grafana)"
},
{
"command": "wrenchit.decodeJwt",
"title": "WrenchIT: Decodificar JWT"
}
],
"menus": {
"editor/context": [
{
"command": "wrenchit.encodeBase64",
"group": "wrenchit@1",
"when": "editorHasSelection"
},
{
"command": "wrenchit.decodeBase64",
"group": "wrenchit@2",
"when": "editorHasSelection"
},
{
"command": "wrenchit.fixJson",
"group": "wrenchit@3"
},
{
"command": "wrenchit.decodeJwt",
"group": "wrenchit@4",
"when": "editorHasSelection"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"package": "vsce package"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/vscode": "^1.85.0",
"typescript": "^5.3.0",
"@vscode/vsce": "^2.22.0"
}
}