-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
150 lines (150 loc) Β· 3.83 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
141
142
143
144
145
146
147
148
149
150
{
"name": "vscode-hue",
"version": "1.3.2",
"publisher": "KelvienHidayat",
"homepage": "https://github.com/kelvien/vscode-hue",
"repository": {
"type": "git",
"url": "https://github.com/kelvien/vscode-hue"
},
"engines": {
"vscode": "^1.31.1"
},
"license": "MIT",
"displayName": "hue",
"description": "This extension integrates your favorite Hue lights with your favorite code editor!",
"categories": [
"Themes",
"Other"
],
"galleryBanner": {
"color": "#000000",
"theme": "dark"
},
"icon": "images/icon.png",
"main": "out/extension.js",
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test",
"vscode:prepublish": "npm run compile"
},
"dependencies": {
"request": "^2.88.0",
"request-promise": "^4.2.4"
},
"devDependencies": {
"@types/node": "^10.12.21",
"@types/mocha": "^2.2.42",
"typescript": "^3.3.1",
"tslint": "^5.12.1",
"vscode": "^1.1.28"
},
"activationEvents": [
"*"
],
"contributes": {
"configuration": {
"type": "object",
"title": "Hue",
"properties": {
"hue.bridge": {
"type": "object",
"default": {},
"description": "Hue Bridge information"
},
"hue.defaultGroup": {
"type": "string",
"default": "",
"description": "Default Hue group name to turn on/off"
},
"hue.ambientLights.enabled": {
"type": "boolean",
"default": false,
"description": "Ambient lights flag"
},
"hue.ambientLights.rules": {
"type": "object",
"default": {},
"description": "Ambient lights rules"
}
}
},
"commands": [
{
"command": "extension.hue.registerBridge",
"title": "Hue: Register bridge"
},
{
"command": "extension.hue.registerNewLights",
"title": "Hue: Register new lights"
},
{
"command": "extension.hue.setDefaultGroup",
"title": "Hue: Set default group"
},
{
"command": "extension.hue.turnDefaultGroupOn",
"title": "Hue: Turn default group on"
},
{
"command": "extension.hue.turnDefaultGroupOff",
"title": "Hue: Turn default group off"
},
{
"command": "extension.hue.enableAmbientLights",
"title": "Hue: Enable ambient lights"
},
{
"command": "extension.hue.disableAmbientLights",
"title": "Hue: Disable ambient lights"
}
],
"keybindings": [
{
"command": "extension.hue.turnDefaultGroupOn",
"key": "ctrl+h 1",
"mac": "cmd+h 1",
"when": "hue.bridgeIsRegistered"
},
{
"command": "extension.hue.turnDefaultGroupOff",
"key": "ctrl+h 0",
"mac": "cmd+h 0",
"when": "hue.bridgeIsRegistered"
}
],
"menus": {
"commandPalette": [
{
"command": "extension.hue.registerBridge"
},
{
"command": "extension.hue.registerNewLights",
"when": "hue.bridgeIsRegistered"
},
{
"command": "extension.hue.setDefaultGroup",
"when": "hue.bridgeIsRegistered"
},
{
"command": "extension.hue.turnDefaultGroupOn",
"when": "hue.bridgeIsRegistered"
},
{
"command": "extension.hue.turnDefaultGroupOff",
"when": "hue.bridgeIsRegistered"
},
{
"command": "extension.hue.enableAmbientLights",
"when": "hue.bridgeIsRegistered"
},
{
"command": "extension.hue.disableAmbientLights",
"when": "hue.bridgeIsRegistered"
}
]
}
}
}