-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.76 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.76 KB
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
{
"name": "@lucadiba/switchbot-client",
"version": "0.4.0",
"description": "A Node.js client for SwitchBot 1.1 APIs",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --tsconfig tsconfig.build.json",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"lint": "tsc && eslint src/**/*.ts",
"test": "jest",
"coverage": "jest --coverage",
"release": "npm run lint && npm run test && npm run build && changeset publish",
"build-docs": "typedoc --readme none --exclude \"**/*+(.test).ts\" --exclude \"**/utils/*.ts\" --entryPointStrategy expand ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LucaDiba/switchbot-client.git"
},
"keywords": [
"switchbot",
"api",
"iot",
"smart home",
"home automation"
],
"author": "Luca Dibattista",
"license": "MIT",
"bugs": {
"url": "https://github.com/LucaDiba/switchbot-client/issues"
},
"homepage": "https://github.com/LucaDiba/switchbot-client#readme",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.0.0 || >=22.0.0 || >=24.0.0"
},
"dependencies": {
"axios": "^1.13.2"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@eslint/js": "^9.39.2",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.3",
"eslint": "^9.39.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^16.5.0",
"jest": "^30.2.0",
"jiti": "^2.6.1",
"nock": "^14.0.10",
"prettier": "3.7.4",
"ts-jest": "^29.4.6",
"tsup": "^8.5.1",
"typedoc": "^0.28.15",
"typedoc-plugin-rename-defaults": "^0.7.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.51.0"
}
}