-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.83 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
54
55
56
57
58
59
60
61
62
{
"name": "hue-emu",
"version": "0.2.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist && rimraf dist.spec",
"generate": "npx openapi-typescript https://github.com/openhue/openhue-api/releases/download/0.9/openhue.yaml -o ./@types/hue.d.ts",
"build:ts": "tsc -p tsconfig.app.json && tsc -p tsconfig.spec.json",
"build": "npm run clean && npm run build:ts",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --ext .ts src --fix",
"prettier": "prettier --write .",
"test": "npm run build && node dist.spec/test/test.js",
"test2": "npm run build && node dist.spec/test/mdns-test.js"
},
"keywords": [
"Hue",
"Smart Home",
"home automation"
],
"author": {
"name": "Christopher Holomek",
"email": "[email protected]"
},
"homepage": "https://github.com/holomekc/hue-emu",
"license": "MIT",
"description": "Hue Bridge emulator",
"repository": {
"type": "git",
"url": "https://github.com/holomekc/hue-emu"
},
"bugs": {
"url": "https://github.com/holomekc/hue-emu/issues"
},
"dependencies": {
"fastify": "4.25.1",
"@fastify/formbody": "7.4.0",
"uuid": "9.0.1",
"rxjs": "7.8.1",
"selfsigned": "2.4.1",
"dns-packet": "5.6.1"
},
"devDependencies": {
"@tsconfig/node20": "20.1.2",
"@types/node": "20.10.2",
"@types/uuid": "9.0.7",
"@types/dns-packet": "5.6.4",
"@typescript-eslint/eslint-plugin": "6.13.1",
"@typescript-eslint/parser": "6.13.1",
"openapi-typescript": "6.7.3",
"typescript": "5.3.2",
"eslint": "8.55.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-unused-imports": "3.0.0",
"prettier": "3.1.0",
"prettier-eslint": "16.1.2",
"rimraf": "5.0.5"
}
}