-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
90 lines (90 loc) · 2.8 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"author": "António Meireles <antonio.meireles@reformi.st> (https://reformi.st)",
"bin": {
"viera-pair": "dist/pair.js"
},
"bugs": {
"url": "https://github.com/AntonioMeireles/homebridge-vieramatic/issues"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@homebridge/plugin-ui-utils": "^0.0.19",
"@hookstate/core": "^4.0.1",
"fast-xml-parser": "^4.2.2",
"fs-extra": "^11.1.1",
"got": "^12.6.0",
"html-entities": "^2.3.3",
"preact": "^10.13.2",
"react": "npm:@preact/compat",
"react-bootstrap": "^1.6.6",
"react-dom": "npm:@preact/compat",
"readline-sync": "^1.4.10"
},
"description": "Homebridge plugin for Panasonic™ Viera™ TVs (with full support for 2018 and later models)",
"devDependencies": {
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.5.1",
"@types/node": "^20.1.0",
"@types/readline-sync": "^1.4.4",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"esbuild": "^0.17.18",
"eslint": "^8.40.0",
"eslint-config-preact": "^1.3.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsonc": "^2.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-regexp": "^1.14.0",
"eslint-plugin-sort-exports": "^0.8.0",
"eslint-plugin-unicorn": "^47.0.0",
"hap-nodejs": "^0.11.1",
"homebridge": "^1.6.1",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"displayName": "Panasonic™ Viera™ TVs support",
"engines": {
"homebridge": ">=1.3.4",
"node": "^14.13.1 || >=16.0.0"
},
"homepage": "https://github.com/AntonioMeireles/homebridge-vieramatic#README",
"keywords": [
"homekit",
"homebridge",
"homebridge-plugin",
"plugin",
"panasonic",
"viera",
"vieramatic",
"television",
"tv",
"automation"
],
"license": "Apache-2.0",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"name": "homebridge-vieramatic",
"repository": {
"type": "git",
"url": "git+https://github.com/AntonioMeireles/homebridge-vieramatic.git"
},
"scripts": {
"build": "npm run clean && npm run lint && node esbuild.config.cjs",
"clean": "rimraf dist/",
"lint": "eslint --ext .js,.ts,.cjs,.tsx,.json src/ --max-warnings=0",
"test": "NODE_OPTIONS='--no-warnings --experimental-vm-modules' npx jest --no-cache"
},
"version": "4.0.51",
"type": "module"
}