-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.38 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
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "nature-remo",
"title": "Nature Remo",
"description": "Control Nature Remo right from Raycast.",
"icon": "nature-remo.png",
"author": "uetchy",
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint"
},
"commands": [
{
"name": "control",
"title": "Control Appliances",
"subtitle": "Nature Remo",
"description": "List and control appliances.",
"mode": "view"
}
],
"preferences": [
{
"name": "apiKey",
"type": "password",
"required": true,
"title": "API Key",
"description": "Your Nature Remo API key taken from home.nature.global",
"placeholder": "Nature Remo API Key"
}
],
"dependencies": {
"@raycast/api": "^1.33.2",
"nature-remo": "^2.0.0",
"node-fetch": "^3.2.8"
},
"devDependencies": {
"@types/node": "^18.0.4",
"@types/node-fetch": "^2.6.2",
"@types/react": "^18.0.8",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2",
"react-devtools": "^4.24.6",
"typescript": "^4.6.4"
},
"license": "MIT",
"categories": ["Applications", "Productivity"]
}