forked from Nerivec/zigbee2mqtt-windfront
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.58 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.58 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
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
{
"name": "zigbee2mqtt-windfront",
"version": "2.9.2",
"license": "GPL-3.0-or-later",
"type": "module",
"main": "./index.js",
"types": "./index.d.ts",
"module": "./index.js",
"exports": {
".": "./index.js"
},
"author": "Nerivec",
"engines": {
"node": ">=22.12.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nerivec/zigbee2mqtt-windfront.git"
},
"bugs": {
"url": "https://github.com/Nerivec/zigbee2mqtt-windfront/issues"
},
"homepage": "https://github.com/Nerivec/zigbee2mqtt-windfront/#readme",
"scripts": {
"clean": "rm -rf ./dist",
"build": "vite build && vite build --config vite.onboarding.config.mts",
"preview": "vite preview",
"start": "vite dev",
"start:envs": "VITE_Z2M_API_URLS=localhost:5173/api,localhost:8080/api,bogus.local:8080/api VITE_Z2M_API_NAMES=dev,main,bogus npm start",
"start:onboarding": "vite dev --config vite.onboarding.config.mts",
"test": "vitest run",
"test:cov": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"check": "biome check --write .",
"check:ci": "biome check .",
"prepack": "npm run clean && npm run build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@ebay/nice-modal-react": "^1.2.13",
"@floating-ui/react": "^0.27.18",
"@fortawesome/fontawesome-svg-core": "^7.2.0",
"@fortawesome/free-solid-svg-icons": "^7.2.0",
"@fortawesome/react-fontawesome": "^3.2.0",
"@storybook/addon-a11y": "^10.2.13",
"@storybook/addon-docs": "^10.2.13",
"@storybook/react-vite": "^10.2.13",
"@tailwindcss/vite": "^4.2.1",
"@tanstack/react-table": "^8.21.3",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/file-saver": "^2.0.7",
"@types/json-schema": "^7.0.15",
"@types/lodash": "^4.17.24",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/ws": "^8.18.1",
"@virtuoso.dev/masonry": "^1.4.0",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "^4.0.18",
"daisyui": "^5.5.19",
"file-saver": "^2.0.5",
"i18next": "^25.8.13",
"i18next-browser-languagedetector": "^8.2.1",
"jsdom": "^28.1.0",
"jszip": "^3.10.1",
"lodash": "^4.17.23",
"react": "^19.2.4",
"react-app-polyfill": "^3.0.0",
"react-dom": "^19.2.4",
"react-i18next": "^16.5.4",
"react-image": "^4.1.0",
"react-router": "^7.13.1",
"react-select": "^5.10.2",
"react-virtuoso": "^4.18.1",
"reagraph": "^4.30.8",
"store2": "^2.14.4",
"storybook": "^10.2.13",
"tailwindcss": "^4.1.4",
"timeago.js": "^4.0.2",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-compression2": "^2.4.0",
"vitest": "^4.0.18",
"ws": "^8.19.0",
"zigbee2mqtt": "github:Koenkk/zigbee2mqtt#dev-types",
"zustand": "^5.0.11"
},
"sideEffects": [
"*.css"
],
"files": [
"./index.js",
"./index.d.ts",
"./dist"
],
"keywords": [
"open-source",
"frontend",
"zigbee",
"zigbee2mqtt"
],
"funding": {
"type": "github",
"url": "https://github.com/sponsors/Nerivec"
}
}