-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
53 lines (53 loc) · 1.16 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
{
"name": "event-deploy-wpilib",
"displayName": "Event Deploy for WPILib",
"description": "Adds a button to commit all changes when deploying robot code at events.",
"version": "0.0.3",
"author": "FRC 6328",
"publisher": "Mechanical-Advantage",
"license": "MIT",
"icon": "icon.png",
"repository": "github:Mechanical-Advantage/EventDeployExtension",
"engines": {
"vscode": "^1.51.0"
},
"categories": [
"Other"
],
"activationEvents": [
"workspaceContains:.wpilib/wpilib_preferences.json"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "event-deploy-wpilib.deploy",
"title": "Deploy Robot Code (Event)",
"category": "WPILib",
"enablement": "isWorkspaceTrusted"
}
],
"menus": {
"commandPalette": [
{
"command": "event-deploy-wpilib.deploy",
"when": "isWPILibProject"
}
],
"editor/title": [
{
"command": "event-deploy-wpilib.deploy",
"group": "wpilib@0",
"when": "isWPILibProject"
}
]
}
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/node": "^12.11.7",
"@types/vscode": "^1.51.0",
"@vscode/vsce": "^2.19.0",
"vscode-test": "^1.4.0"
}
}