-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
95 lines (95 loc) · 2.1 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
{
"name": "vue-responsiveness",
"private": false,
"files": [
"dist",
"lib"
],
"types": "./dist/index.d.ts",
"main": "./dist/vue-responsiveness.umd.cjs",
"module": "./dist/vue-responsiveness.js",
"exports": {
".": {
"import": "./dist/vue-responsiveness.js",
"require": "./dist/vue-responsiveness.umd.cjs"
}
},
"keywords": [
"vue",
"vue3",
"vue responsiveness plugin",
"vue plugin",
"responsiveness",
"responsive design",
"responsiveness breakpoints",
"responsiveness interval",
"breakpoints",
"custom breakpoints",
"matchmedia",
"window matchmedia",
"match media",
"media query",
"media queries",
"@media",
"css",
"bootstrap",
"bulma",
"chakra",
"foundation",
"ionic",
"material design",
"materialize",
"material ui",
"quasar",
"semantic ui",
"Skeleton",
"vuetify",
"tailwind",
"tailwindcss",
"windi",
"windicss"
],
"repository": {
"type": "git",
"url": "git+https://github.com/codemonk-digital/vue-responsiveness.git"
},
"version": "0.2.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"lint": "eslint . --ext ts,tsx,js,jsx,json,cjs,mjs",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"peerDependencies": {
"vue": "^3"
},
"devDependencies": {
"@types/node": "^18.19.31",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"@vitejs/plugin-vue": "^5.0.4",
"@vitest/coverage-v8": "^1.4.0",
"@vue/test-utils": "^2.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.24.1",
"jsdom": "^24.0.0",
"prettier": "^3.2.5",
"typescript": "^5.4.4",
"vite": "^5.2.8",
"vite-plugin-dts": "^3.8.1",
"vitest": "^1.4.0",
"vue": "^3.4.21",
"vue-tsc": "^2.0.11"
},
"prettier": {
"trailingComma": "none",
"semi": false,
"singleQuote": true
},
"license": "MIT"
}