-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.19 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
{
"name": "@fastybird/metadata-library",
"version": "1.0.0-dev.24",
"type": "module",
"description": "FastyBird IoT metadata reader & validator",
"keywords": [
"fastybird",
"fb",
"libs",
"library",
"metadata",
"modules",
"plugins",
"connectors"
],
"homepage": "https://www.fastybird.com",
"bugs": "https://github.com/FastyBird/fastybird/issues",
"license": "Apache-2.0",
"author": {
"name": "FastyBird s.r.o.",
"email": "code@fastybird.com",
"url": "https://www.fastybird.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/FastyBird/metadata-library.git"
},
"main": "dist/metadata-library.umd.js",
"module": "dist/metadata-library.es.js",
"types": "dist/metadata-library.d.ts",
"exports": {
".": {
"import": "./dist/metadata-library.es.js",
"require": "./dist/metadata-library.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"
},
"devDependencies": {
"@commitlint/cli": "^19.6",
"@commitlint/config-conventional": "^19.6",
"@eslint/js": "^9.15",
"@nabla/vite-plugin-eslint": "^2.0",
"@trivago/prettier-plugin-sort-imports": "^4.3",
"@types/node": "^20.17",
"@typescript-eslint/eslint-plugin": "^8.15",
"@typescript-eslint/parser": "^8.15",
"eslint": "^9.15",
"eslint-config-prettier": "^9.1",
"eslint-plugin-prettier": "^5.2",
"prettier": "^3.3",
"rimraf": "^6.0",
"rollup-plugin-delete": "^2.1",
"typescript": "5.6.2",
"typescript-eslint": "^8.15",
"vite": "^5.4",
"vite-plugin-dts": "4.1.1",
"vue-tsc": "^2.1"
},
"engines": {
"node": ">=20"
}
}