-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.13 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
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "hue",
"title": "Hue",
"description": "Quickly and easily control Philips Hue lights",
"icon": "command-icon.png",
"author": "pindab0ter",
"contributors": [
"thomas",
"robert"
],
"license": "MIT",
"categories": [
"Applications",
"Other"
],
"commands": [
{
"name": "controlLights",
"title": "Control Lights",
"subtitle": "Hue",
"description": "List, search and control lights",
"mode": "view"
},
{
"name": "controlGroups",
"title": "Control Groups",
"subtitle": "Hue",
"keywords": [
"room",
"zone",
"entertainment"
],
"description": "List, search and control rooms, zones and entertainment areas",
"mode": "view"
},
{
"name": "setScene",
"title": "Set Scene",
"subtitle": "Hue",
"description": "List, search and set scenes",
"mode": "view"
},
{
"name": "turnOffAllLights",
"title": "Turn Off All Lights",
"subtitle": "Hue",
"description": "Turn off all the lights",
"mode": "no-view"
}
],
"preferences": [
{
"name": "transitionTime",
"title": "Transition Time",
"description": "The time in milliseconds that the transition will take, rounded to 100ms.",
"placeholder": "400",
"type": "textfield",
"default": "400",
"required": false
}
],
"dependencies": {
"@raycast/api": "^1.49.2",
"@raycast/utils": "^1.5.2",
"@types/node-localstorage": "^1.3.0",
"@types/stream-json": "^1.7.3",
"@xstate/react": "^3.2.1",
"chroma-js": "^2.4.2",
"jimp": "^0.22.7",
"node-hue-api": "^5.0.0-beta.16",
"stream-json": "^1.7.5",
"xstate": "^4.37.1"
},
"devDependencies": {
"@raycast/eslint-config": "^1.0.5",
"@types/chroma-js": "^2.4.0",
"eslint": "^8.37.0",
"prettier": "^2.8.7",
"typescript": "^5.0.2"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"publish": "ray publish"
}
}