-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.13 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
{
"name": "vue-modal-core",
"version": "1.0.3",
"license": "MIT",
"description": "一个轻量级的 Vue 3 模态框管理库,提供灵活的模态框控制和生命周期管理",
"repository": {
"type": "git",
"url": "https://github.com/mchao123/vue-modal-core.git"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"prepublishOnly": "npm run build"
},
"author": "ZhangSan",
"peerDependencies": {
"vue": "^3.4.0"
},
"devDependencies": {
"typescript": "^5.2.2",
"tsup": "^8.0.2",
"vue": "^3.4.0"
},
"keywords": [
"vue",
"modal",
"vue3",
"dialog",
"popup",
"overlay",
"typescript"
]
}