-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.62 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
{
"name": "@fastybird/tools",
"version": "1.0.0-dev.24",
"type": "module",
"description": "FastyBird IoT useful tools",
"keywords": [
"fastybird",
"fb",
"libs",
"library",
"tools",
"composables"
],
"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/tools.git"
},
"main": "dist/tools.umd.js",
"module": "dist/tools.es.js",
"types": "dist/tools.d.ts",
"exports": {
".": {
"import": "./dist/tools.es.js",
"require": "./dist/tools.umd.js"
}
},
"files": [
"dist/*",
"resources/*"
],
"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",
"pretty": "yarn pretty:write && yarn pretty:check",
"pretty:check": "prettier assets --check",
"pretty:write": "prettier assets --write"
},
"dependencies": {
"@fastybird/metadata-library": "1.0.0-dev.24",
"@vueuse/core": "^11.2",
"axios": "^1.6",
"element-plus": "^2.8",
"lodash.get": "^4.4",
"mitt": "^3.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6",
"@commitlint/config-conventional": "^19.6",
"@nabla/vite-plugin-eslint": "^2.0",
"@trivago/prettier-plugin-sort-imports": "^4.3",
"@types/lodash.get": "^4.4",
"@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",
"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",
"rollup-plugin-delete": "^2.1",
"typescript": "5.6.2",
"vite": "^5.4",
"vite-plugin-dts": "4.1.1",
"vue": "^3.5",
"vue-i18n": "^10.0",
"vue-loader": "^17.4",
"vue-router": "^4.4",
"vue-tsc": "^2.1"
},
"engines": {
"node": ">=20"
},
"peerDependencies": {
"pinia": "^2.2",
"vue": "^3.5",
"vue-i18n": "^10.0",
"vue-router": "^4.4"
}
}