-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
141 lines (141 loc) · 4.04 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "@fastybird/devices-module",
"version": "1.0.0-dev.24",
"type": "module",
"description": "FastyBird IoT devices module for connectors & devices management & basic control logic",
"keywords": [
"fastybird",
"fb",
"api",
"php",
"iot",
"vuejs",
"typescript",
"vue",
"connector",
"nette",
"controls",
"devices",
"vue3",
"pinia"
],
"homepage": "https://www.fastybird.com",
"bugs": "https://github.com/FastyBird/fastybird/issues",
"license": "Apache-2.0",
"author": {
"name": "FastyBird s.r.o.",
"email": "[email protected]",
"url": "https://www.fastybird.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/FastyBird/devices-module.git"
},
"main": "dist/devices-module.umd.js",
"module": "dist/devices-module.es.js",
"types": "dist/devices-module.d.ts",
"exports": {
".": {
"import": "./dist/devices-module.es.js",
"require": "./dist/devices-module.umd.js"
}
},
"files": [
"dist/*",
"assets/**/*.scss"
],
"scripts": {
"clean": "rimraf dist && rimraf tsconfig.tsbuildinfo",
"build": "yarn clean && vue-tsc --noEmit --composite false && vite build",
"build:dev": "vue-tsc --noEmit --composite false && vite build --watch --mode development",
"build:only": "yarn clean && vite build",
"types": "vue-tsc --noEmit --composite false",
"lint:js": "eslint assets",
"lint:js:fix": "eslint assets --fix",
"lint:styles": "stylelint 'assets/**/*.scss'",
"pretty": "yarn pretty:write && yarn pretty:check",
"pretty:check": "prettier assets --check",
"pretty:write": "prettier assets --write",
"depcheck": "depcheck ."
},
"dependencies": {
"@fastybird/tools": "1.0.0-dev.24",
"@fastybird/metadata-library": "1.0.0-dev.24",
"@fastybird/vue-wamp-v1": "^1.2",
"@fastybird/web-ui-icons": "1.0.0-dev.24",
"@fastybird/web-ui-library": "1.0.0-dev.24",
"ajv": "^8.17",
"ajv-formats": "^3.0",
"async-validator": "^4.2",
"axios": "^1.7",
"date-fns": "^3.6",
"element-plus": "^2.8",
"idb": "^8.0",
"jsona": "^1.12",
"lodash.get": "^4.4",
"lodash.capitalize": "^4.2",
"lodash.defaultsdeep": "^4.6",
"lodash.isequal": "^4.5",
"natural-orderby": "^5.0",
"uuid": "^11.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6",
"@commitlint/config-conventional": "^19.6",
"@eslint/js": "^9.15",
"@intlify/unplugin-vue-i18n": "^6.0",
"@nabla/vite-plugin-eslint": "^2.0",
"@trivago/prettier-plugin-sort-imports": "^4.3",
"@types/lodash.get": "^4.4",
"@types/lodash.capitalize": "^4.2",
"@types/lodash.defaultsdeep": "^4.6",
"@types/lodash.isequal": "^4.5",
"@types/node": "^20.17",
"@typescript-eslint/eslint-plugin": "^8.15",
"@typescript-eslint/parser": "^8.15",
"@vitejs/plugin-vue": "^5.2",
"@vue/eslint-config-prettier": "^10.1",
"@vue/eslint-config-typescript": "^14.1",
"depcheck": "^1.4",
"eslint": "^9.15",
"eslint-config-prettier": "^9.1",
"eslint-plugin-prettier": "^5.2",
"eslint-plugin-vue": "^9.31",
"pinia": "^2.2",
"prettier": "^3.3",
"rimraf": "^6.0",
"sass": "^1.81",
"sass-loader": "^16.0",
"stylelint": "^16.10",
"stylelint-config-prettier": "^9.0",
"stylelint-config-recommended-vue": "^1.5",
"stylelint-config-standard": "^36.0",
"stylelint-config-standard-scss": "^13.1",
"stylelint-order": "^6.0",
"stylelint-prettier": "^5.0",
"typescript": "5.6.2",
"typescript-eslint": "^8.15",
"unocss": "^0.64",
"vite": "^5.4",
"vite-plugin-dts": "4.1.1",
"vite-plugin-vue-type-imports": "^0.2",
"vue": "^3.5",
"vue-i18n": "^10.0",
"vue-loader": "^17.4",
"vue-meta": "^3.0.0-alpha.10",
"vue-router": "^4.4",
"vue-tsc": "^2.1"
},
"peerDependencies": {
"pinia": "^2.2",
"unocss": "^0.64",
"vue": "^3.5",
"vue-i18n": "^10.0",
"vue-meta": "^3.0.0-alpha.10",
"vue-router": "^4.4"
},
"engines": {
"node": ">=20",
"fastybird": "1.0.0-dev.24"
}
}