-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.25 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
{
"name": "@muenchen/appswitcher-vue",
"version": "0.0.1",
"description": "Vue.js/Vuetify component for appswitcher-server",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/it-at-m/appswitcher-vue.git"
},
"type": "module",
"files": [
"dist"
],
"module": "./dist/appswitcher.es.js",
"types": "./dist/types/components/index.d.ts",
"exports": {
".": {
"types": "./dist/types/components/index.d.ts",
"import": "./dist/appswitcher.es.js"
}
},
"scripts": {
"dev": "vite",
"build": "rimraf dist && vue-tsc && vite build",
"build:demo": "vue-tsc && vite build -c vite.demo.config.ts",
"test": "vitest",
"coverage": "vitest run --coverage",
"semantic-release": "semantic-release",
"lint": "eslint . --fix --ignore-path .gitignore",
"prettier": "prettier --write ."
},
"peerDependencies": {
"@mdi/font": "> 5",
"vue": "^3.2.0",
"vuetify": "^3.0.0"
},
"devDependencies": {
"@muenchen/prettier-codeformat": "^1.0.1",
"@rushstack/eslint-patch": "^1.6.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.0",
"@types/jest": "^29.2.4",
"@types/node": "^22.0.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vitest/coverage-v8": "^3.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/test-utils": "^2.4.1",
"eslint": "^8.41.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-vue": "^9.14.1",
"eslint-plugin-vuetify": "^2.0.1",
"jsdom": "^26.0.0",
"path": "^0.12.7",
"prettier": "3.5.1",
"rimraf": "^6.0.1",
"sass": "~1.84.0",
"semantic-release": "^24.0.0",
"typescript": "^5.0.4",
"unplugin-fonts": "^1.0.3",
"vite": "^4.4.9",
"vite-plugin-dts": "^4.0.0",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-vuetify": "^1.0.0",
"vitest": "^3.0.0",
"vue-tsc": "^2.0.0"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"prettier": "@muenchen/prettier-codeformat",
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-recommended",
"eslint:recommended",
"@vue/eslint-config-typescript",
"prettier",
"plugin:vuetify/base"
]
}
}