-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.28 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
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "logitech-litra",
"title": "Logitech Litra",
"description": "Manage USB-connected Logitech Litra Glow, Litra Beam and Litra Beam LX lights from Raycast",
"icon": "command-icon.png",
"author": "timrogers",
"categories": [
"Productivity"
],
"license": "MIT",
"commands": [
{
"name": "manage-devices",
"title": "Manage Devices",
"subtitle": "Turn on and off, and set brightness and temperature",
"description": "Turn your USB-connected Logitech Litra devices on or off, and set their brightness and temperature",
"mode": "view"
},
{
"name": "manage-temperature-presets",
"title": "Manage Temperature Presets",
"subtitle": "Set up presets for your Litra devices' temperature",
"description": "Configure presets so you can manage your Litra devices' temperature from Raycast",
"mode": "view"
},
{
"name": "manage-brightness-presets",
"title": "Manage Brightness Presets",
"subtitle": "Set up presets for your Litra devices' brightness",
"description": "Configure presets so you can manage your Litra devices' brightness from Raycast",
"mode": "view"
}
],
"preferences": [
{
"name": "litraBinaryPath",
"type": "textfield",
"required": true,
"title": "`litra` binary path",
"description": "The path to the `litra` binary. You can install the `litra` command line tool by following the instructions at https://github.com/timrogers/litra-rs, and then running `which litra` to get the path."
}
],
"dependencies": {
"@raycast/api": "^1.88.4",
"semver": "^7.6.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@types/node": "^22.10.2",
"@types/react": "^18.3.3",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"react": "^18.3.1",
"typescript": "^5.7.2"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"publish": "ray publish"
}
}