-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 882 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 882 Bytes
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
{
"name": "@caseman72/switchr-api",
"version": "1.1.0",
"description": "Simple SwitchBot API client for smart devices",
"main": "index.js",
"type": "module",
"files": [
"index.js",
"lib/*.js",
"README.md",
".env.local.example"
],
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"keywords": [
"switchbot",
"api",
"smart-home",
"iot",
"home-automation"
],
"author": "Casey Manion <casey@manion.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/caseman72/switchr-api.git"
},
"bugs": {
"url": "https://github.com/caseman72/switchr-api/issues"
},
"homepage": "https://github.com/caseman72/switchr-api#readme",
"dependencies": {
"dotenv": "^16.5.0"
},
"devDependencies": {
"eslint": "^9.28.0",
"@eslint/js": "^9.28.0"
}
}