forked from mengdu/m-message
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.2 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
{
"name": "vue-m-message",
"version": "4.0.1",
"description": "A message plugin base on Vue",
"private": false,
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"types": "types/index.d.ts",
"keywords": [
"vue-m-message",
"m-message",
"vue-notification",
"vue-toast"
],
"files": [
"dist",
"types"
],
"github": "https://github.com/mengdu/m-message",
"repository": {
"type": "https",
"url": "git+https://github.com/mengdu/m-message"
},
"bugs": {
"url": "https://github.com/mengdu/m-message/issues"
},
"homepage": "https://mengdu.github.io/m-message/index.html",
"license": "MIT",
"author": {
"name": "Lanyue",
"email": "[email protected]"
},
"scripts": {
"dev": "vite playground",
"preview": "vite preview playground",
"ts-check": "vue-tsc --noEmit",
"build": "npm run ts-check && vite build",
"build:playground": "npm run ts-check && vite build playground"
},
"devDependencies": {
"@vitejs/plugin-vue": "^2.3.0",
"@vitejs/plugin-vue-jsx": "^1.3.9",
"less": "^4.1.2",
"typescript": "^4.5.4",
"vite": "^2.9.0",
"vite-plugin-dts": "^1.0.5",
"vue": "^3.2.31",
"vue-tsc": "^0.29.8"
}
}