-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.95 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.95 KB
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
{
"name": "v-dialogs",
"description": "A simple command-style pop-up dialog components for Vue3",
"version": "3.1.1",
"author": "TerryZ <terry5@foxmail.com>",
"type": "module",
"files": [
"/dist",
"/types"
],
"main": "./dist/v-dialogs.umd.cjs",
"module": "./dist/v-dialogs.js",
"packageManager": "pnpm@10.15.0",
"exports": {
".": {
"import": {
"types": "./types/index.d.ts",
"default": "./dist/v-dialogs.js"
},
"require": "./dist/v-dialogs.umd.cjs"
}
},
"typings": "types/index.d.ts",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview --port 4173",
"test:unit": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint . --fix --config ./eslint.config.js --ignore-pattern .gitignore",
"dts": "vue-tsc --declaration --emitDeclarationOnly"
},
"repository": {
"type": "git",
"url": "https://github.com/TerryZ/v-dialogs.git"
},
"keywords": [
"front-end",
"vue",
"dialog",
"alert",
"mask",
"toast",
"modal",
"drawer",
"message",
"vue-modal",
"vue-dialog"
],
"peerDependencies": {
"vue": "^3.5.13"
},
"dependencies": {
"vue": "^3.5.20"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.12.0",
"@vitejs/plugin-vue": "^6.0.1",
"@vitejs/plugin-vue-jsx": "^5.1.1",
"@vitest/coverage-v8": "^3.2.4",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-standard": "^9.0.1",
"@vue/test-utils": "^2.4.6",
"autoprefixer": "^10.4.21",
"bootstrap": "^5.3.8",
"eslint": "^9.34.0",
"eslint-plugin-vue": "^10.4.0",
"globals": "^16.3.0",
"jsdom": "^26.1.0",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"sass": "^1.91.0",
"typescript": "^5.9.2",
"vite": "^7.1.3",
"vite-plugin-css-injected-by-js": "^3.5.2",
"vitest": "^3.2.4",
"vue-router": "^4.5.1",
"vue-tsc": "^3.0.6"
}
}