-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.1 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.1 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
{
"name": "uc-integration-philipshue",
"version": "0.2.14",
"description": "Philips Hue integration for Unfolded Circle",
"main": "driver.js",
"type": "module",
"scripts": {
"format": "prettier --write .",
"code-check": "prettier --check . && eslint . --ext .ts",
"lint": "eslint --fix --ext .ts",
"test": "tsc && ava dist/test/**/*.js",
"build": "tsc",
"start": "npm run build && node dist/driver.js"
},
"author": "Unfolded Circle",
"license": "MPL-2.0",
"dependencies": {
"@unfoldedcircle/integration-api": "^0.3.0",
"axios": "^1.13.6",
"bonjour-service": "^1.3.0",
"eventsource": "^4.1.0",
"i18n": "^0.15.3",
"undici": "^7.22.0"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/i18n": "^0.13.12",
"@types/node": "^22.10.2",
"@types/qs": "^6.15.0",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.57.0",
"ava": "^6.4.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.1",
"typescript": "^5.7.2"
}
}