-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
89 lines (89 loc) · 2.69 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
{
"name": "vue3-snackbar",
"version": "2.3.4",
"author": "Craig Riley",
"scripts": {
"build": "npm run build:types && vite build -c vite-build.config.js",
"build:types": "vue-tsc && cp ./src/global.d.ts ./types/global.d.ts && npm run copy-ref",
"demo": "vite",
"demo:build": "vite build",
"demo:deploy": "gh-pages -d demo/dist",
"prepublishOnly": "npm run build",
"preinstall": "npx only-allow pnpm",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"format": "prettier . --write",
"copy-ref": "echo '/// <reference path=\"./global.d.ts\" />\n' | cat - ./types/index.d.ts > temp && mv temp ./types/index.d.ts"
},
"type": "module",
"types": "./types/index.d.ts",
"main": "./dist/vue3-snackbar.cjs",
"module": "./dist/vue3-snackbar.js",
"exports": {
".": {
"require": "./dist/vue3-snackbar.cjs",
"import": "./dist/vue3-snackbar.js",
"browser": "./dist/vue3-snackbar.umd.cjs"
},
"./styles": "./dist/style.css"
},
"files": [
"dist",
"types"
],
"dependencies": {
"tiny-emitter": "^2.1.0",
"vue3-icon": "^2.1.0"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@mdi/js": "^7.4.47",
"@vitejs/plugin-vue": "^5.1.3",
"@vueuse/core": "^11.0.3",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vue": "^9.28.0",
"gh-pages": "^6.1.1",
"globals": "^15.9.0",
"jsdoc": "^4.0.3",
"jsdoc-vuejs": "^4.0.0",
"postcss": "^8.4.45",
"postcss-nested": "^6.2.0",
"prettier": "^3.3.3",
"prismjs": "^1.29.0",
"roboto-fontface": "^0.10.0",
"sass": "^1.78.0",
"sass-loader": "^14.2.1",
"typescript": "^5.6.2",
"vite": "^5.4.5",
"vite-plugin-vuetify": "^2.0.4",
"vue": "^3.5.5",
"vue-tsc": "^2.1.6",
"vuetify": "^3.7.1"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"bugs": {
"url": "https://github.com/evo-mark/vue3-snackbar/issues"
},
"homepage": "https://github.com/evo-mark/vue3-snackbar#readme",
"keywords": [
"Vue",
"Vue3",
"snackbar",
"toast",
"alerts",
"messages"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/evo-mark/vue3-snackbar.git"
},
"packageManager": "[email protected]+sha256.2d0363bb6c314daa67087ef07743eea1ba2e2d360c835e8fec6b5575e4ed9484"
}