-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
44 lines (44 loc) · 1.1 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
{
"name": "vue-m-dialog",
"description": "A dialog component for vue.",
"version": "3.0.0",
"private": false,
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"types": "types/index.d.ts",
"files": [
"dist",
"types"
],
"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"
},
"website": "https://lanyueos.com",
"github": "https://github.com/mengdu/m-dialog",
"homepage": "https://mengdu.github.io/m-dialog",
"repository": {
"type": "git",
"url": "git+https://github.com/mengdu/m-dialog"
},
"bugs": {
"url": "https://github.com/mengdu/m-dialog/issues"
},
"author": {
"name": "Lanyue",
"email": "[email protected]"
},
"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"
}
}