-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.16 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
{
"name": "hue-fireplace",
"version": "0.1.0",
"description": "",
"exports": "./main.ts",
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"repository": {
"type": "github",
"url": "https://github.com/thijsputman/hue-fireplace"
},
"scripts": {
"start": "node src/main.js",
"start:local": "opener ./test/ws/client.html && node src/main.js local",
"build": "tsc -p ./",
"build:dist": "tsc -p ./dist/tsconfig.json ",
"lint": "eslint \"**/*.ts\" || true"
},
"author": "Thijs Putman <[email protected]>",
"license": "BSD-3-Clause",
"dependencies": {
"chalk": "^5.0.1",
"node-dtls-client": "^1.0.1",
"node-fetch": "^3.2.3",
"opener": "^1.5.2",
"ws": "^8.5.0"
},
"devDependencies": {
"@types/node": "^17.0.24",
"@types/ws": "^8.5.0",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-sonarjs": "^0.13.0",
"prettier": "^1.16.4",
"source-map-support": "^0.5.11",
"typescript": "^4.6.3"
}
}