forked from ctf0/macros
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.64 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
{
"name": "macros",
"displayName": "macros",
"description": "automate repetitive actions with custom macros",
"version": "0.1.0",
"publisher": "ctf0",
"repository": "https://github.com/ctf0/macros",
"engines": {
"vscode": "^1.68.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"icon": "images/icon.png",
"main": "./extension",
"contributes": {
"configuration": {
"type": "object",
"title": "Macros configuration",
"properties": {
"macros.list": {
"type": "object"
},
"macros.qp-ignore": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"uniqueItems": true,
"description": "exclude commands from the quick-pick"
},
"macros.qp-allow": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"uniqueItems": true,
"description": "include commands to the quick-pick"
}
}
},
"commands": [
{
"command": "macros.execute",
"title": "Macros: Execute"
}
]
},
"devDependencies": {
"@types/node": "^18.15.0",
"eslint": "^8.36.0",
"typescript": "^4.9.5",
"@types/vscode": "^1.68.0"
}
}