-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
76 lines (76 loc) · 2.01 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
{
"name": "macro-commander",
"displayName": "macro-commander (Command Runner)",
"description": "Keybindings to commandline scripts, along with any VS Code command",
"icon": "icon.png",
"version": "1.6.0",
"publisher": "jeff-hykin",
"repository": {
"type": "git",
"url": "git+https://github.com/jeff-hykin/macro-commander.git"
},
"engines": {
"vscode": "^1.5.0"
},
"keywords": [
"macro",
"command",
"commands",
"automate",
"actions",
"keybinding",
"run"
],
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./main/main.js",
"contributes": {
"configuration": {
"type": "object",
"title": "Macros configuration",
"properties": {
"macros": {}
}
},
"commands": [
{
"command": "macro.run",
"title": "Macros: Run A Macro"
},
{
"command": "macro.list-builtin-commands",
"title": "Macros: List all the commands that can be used in macros"
},
{
"command": "macro.js-to-json",
"title": "Macros: JS to JSON"
},
{
"command": "macro.json-to-js",
"title": "Macros: JSON to JS"
},
{
"command": "macro.this.is.a.real.dummy.command",
"title": "Macros: A demo command for macro commander"
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@vscode/vsce": "^2.15.0",
"ovsx": "^0.7.1"
},
"bugs": {
"url": "https://github.com/jeff-hykin/macro-commander/issues"
},
"homepage": "https://github.com/jeff-hykin/macro-commander#readme",
"author": "",
"license": "ISC",
"dependencies": {}
}