-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.44 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
{
"name": "vue-modern-notification",
"description": "This is a modern notification plugin for Vue applications",
"author": "Rejown Ahmed Zisan",
"private": false,
"version": "1.1.0",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/RejownAhmed/vue-modern-notification"
},
"files": [
"dist"
],
"types": "./src/plugins/notification/types.d.ts",
"typings": "./src/plugins/notification/types.d.ts",
"main": "./dist/vue-modern-notification.umd.cjs",
"module": "./dist/vue-modern-notification.js",
"exports": {
".": {
"import": "./dist/vue-modern-notification.js",
"require": "./dist/vue-modern-notification.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@iconify/vue": "^4.1.1",
"@vitejs/plugin-vue": "^4.2.3",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.32",
"sass": "^1.69.5",
"sass-loader": "^13.3.3",
"tailwindcss": "^3.3.7",
"typescript": "^5.3.3",
"v-wave": "^2.0.0",
"vite": "^4.4.0",
"vite-plugin-checker": "^0.6.2",
"vite-plugin-css-injected-by-js": "^3.3.1",
"vitepress": "^1.0.0-rc.33",
"vitepress-plugin-tabs": "^0.5.0",
"vue": "^3.3.4",
"vue-modern-notification": "^1.0.8"
}
}