-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
114 lines (114 loc) · 3.12 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "homebridge-adt-pulse",
"displayName": "Homebridge ADT Pulse",
"version": "3.4.4",
"description": "Homebridge security system platform for ADT Pulse",
"main": "./build/index.js",
"exports": "./build/index.js",
"type": "module",
"private": false,
"scripts": {
"start": "homebridge --debug --keep-orphans --plugin-path $(pwd)",
"start-ui": "vite serve",
"build": "npm-run-all --sequential build:*",
"build:reset": "rimraf ./build",
"build:lint": "npx eslint ./src",
"build:tsc": "tsc --project tsconfig.json",
"build:fix-paths": "tsconfig-replace-paths --project tsconfig.json",
"build:cleanup": "rimraf ./build/config-ui/vite",
"build:ui": "vite build",
"repl": "node ./build/scripts/repl.js",
"test-api": "node ./build/scripts/test-api.js",
"prepare": "npm run build",
"prepublishOnly": "npm run build"
},
"types": "",
"repository": {
"type": "git",
"url": "git://github.com/mrjackyliang/homebridge-adt-pulse.git"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/mrjackyliang"
},
{
"type": "custom",
"url": "https://liang.nyc/paypal"
}
],
"keywords": [
"homebridge",
"homebridge-plugin",
"homekit",
"adt",
"adt-pulse",
"icontrol",
"security",
"security-system"
],
"author": {
"name": "Jacky Liang",
"email": "[email protected]",
"url": "https://www.mrjackyliang.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mrjackyliang/homebridge-adt-pulse/issues"
},
"files": [
"./build",
"config.schema.json"
],
"homepage": "https://github.com/mrjackyliang/homebridge-adt-pulse",
"engines": {
"homebridge": "~1.8.0 || ^2.0.0-beta.0",
"node": ">=20"
},
"dependencies": {
"@faker-js/faker": "9.2.0",
"@homebridge/plugin-ui-utils": "1.0.3",
"@hookform/resolvers": "3.9.1",
"axios": "1.7.7",
"axios-cookiejar-support": "5.0.3",
"chalk": "5.3.0",
"jsdom": "25.0.1",
"latest-version": "9.0.0",
"lodash": "4.17.21",
"luxon": "3.5.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "7.53.1",
"semver": "7.6.3",
"serialize-error": "11.0.3",
"tough-cookie": "5.0.0",
"ua-parser-js": "2.0.0-beta.3",
"zod": "3.23.8"
},
"devDependencies": {
"@types/jsdom": "21.1.7",
"@types/lodash": "4.17.13",
"@types/luxon": "3.4.2",
"@types/node": "22.9.0",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/semver": "7.5.8",
"@types/tough-cookie": "4.0.5",
"@typescript-eslint/eslint-plugin": "7.17.0",
"@typescript-eslint/parser": "7.17.0",
"@vitejs/plugin-react": "4.3.3",
"eslint": "8.56.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.2",
"homebridge": "1.8.4",
"npm-run-all": "4.1.5",
"rimraf": "6.0.1",
"tsconfig-replace-paths": "0.0.14",
"typescript": "5.5.4",
"vite": "5.4.10",
"vite-tsconfig-paths": "5.1.0"
}
}