forked from kyvg/vue3-notification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.38 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
{
"name": "@kyvg/vue3-notification",
"description": "Vue.js Notification Library",
"version": "3.2.1",
"author": "kyvg",
"private": false,
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"vetur": {
"tags": "vetur/tags.json",
"attributes": "vetur/attributes.json"
},
"scripts": {
"release": "npm run build && npm run build:resolver && tail -n +3 src/global-extensions.d.ts >> dist/index.d.ts",
"build": "vite build",
"build:resolver": "vite build -c vite.resolver.config.js",
"unit": "vitest",
"unit:watch": "vitest --watch",
"test": "npm run unit",
"lint": "eslint ./src/index.ts",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"preversion": "npm run test && npm run release && git add -A dist"
},
"typings": "./dist/index.d.ts",
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"style": "./dist/index.css",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
},
"./auto-import-resolver": {
"types": "./dist/auto-import-resolver/index.d.ts",
"import": "./dist/auto-import-resolver/index.es.js",
"require": "./dist/auto-import-resolver/index.umd.js"
}
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/kyvg/vue3-notification.git"
},
"bugs": {
"url": "https://github.com/kyvg/vue3-notification/issues"
},
"license": "MIT",
"peerDependencies": {
"vue": "^3.0.0"
},
"keywords": [
"web",
"front-end",
"vue",
"vuejs",
"vue3",
"notification",
"vue-notification",
"vue-notifications"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vue/compiler-sfc": "^3.3.4",
"@vue/server-renderer": "^3.2.37",
"@vue/test-utils": "^2.2.1",
"eslint": "^8.26.0",
"eslint-plugin-vue": "^9.13.0",
"jsdom": "^22.0.0",
"mitt": "^3.0.0",
"sass": "^1.57.1",
"typescript": "^5.0.4",
"unplugin-vue-components": "^0.26.0",
"vite": "^4.3.8",
"vite-plugin-css-injected-by-js": "^3.1.1",
"vite-plugin-dts": "^3.6.4",
"vitepress": "^1.0.0-rc.44",
"vitest": "^1.0.2",
"vue": "^3.3.4"
}
}