forked from xiaoluoboding/vue-sonner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.33 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
{
"name": "vue-sonner",
"version": "0.3.0",
"type": "module",
"author": "xiaoluoboding <xiaoluoboding@gmail.com>",
"scripts": {
"dev": "vite",
"build:docs": "vite build --mode docs",
"build:lib": "vue-tsc --noEmit && vite build --mode lib",
"preview": "vite preview",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xiaoluoboding/vue-sonner.git"
},
"homepage": "https://github.com/xiaoluoboding/vue-sonner",
"files": [
"lib"
],
"main": "./lib/vue-sonner.umd.cjs",
"module": "./lib/vue-sonner.js",
"exports": {
".": {
"import": "./lib/vue-sonner.js",
"require": "./lib/vue-sonner.umd.cjs"
}
},
"sideEffects": [
"**/*.css"
],
"types": "./lib/index.d.ts",
"devDependencies": {
"@iconify/json": "^2.1.104",
"@types/node": "^18.7.14",
"@unocss/reset": "^0.45.18",
"@vitejs/plugin-vue": "^3.0.3",
"@vueuse/core": "^9.1.1",
"@vueuse/head": "^1.1.23",
"highlight.js": "^11.6.0",
"typescript": "^4.6.4",
"unocss": "^0.45.13",
"unplugin-icons": "^0.14.9",
"unplugin-vue-components": "^0.22.4",
"vite": "^3.0.7",
"vite-plugin-dts": "^1.4.1",
"vite-plugin-lib-inject-css": "^1.0.1",
"vue": "^3.2.37",
"vue-tsc": "^0.39.5"
}
}