-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.58 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.58 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
{
"name": "@dongls/xwindow",
"version": "0.3.12",
"description": "xWindow是一个简单易用的弹窗组件库",
"type": "module",
"main": "dist/index.js",
"style": "dist/index.css",
"types": "dist/index.d.ts",
"homepage": "https://github.com/dongls/xWindow",
"keywords": [
"xWindow",
"vue",
"window",
"dialog",
"modal"
],
"license": "MIT",
"author": {
"name": "dongls",
"email": "173110115@qq.com"
},
"exports": {
".": {
"require": "./dist/index.umd.cjs",
"default": "./dist/index.js"
},
"./dist/*": "./dist/*",
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/dongls/xWindow.git"
},
"scripts": {
"dev": "vite --mode document",
"build": "vue-tsc && vite build",
"build:document": "vue-tsc && vite build --mode document",
"release:code": "node ./script/publish.js",
"release:document": "node ./script/release.js"
},
"peerDependencies": {
"vue": "^3.3.9"
},
"devDependencies": {
"@types/node": "^24.0.14",
"@vitejs/plugin-vue": "^6.0.0",
"@vitejs/plugin-vue-jsx": "^5.0.1",
"execa": "^9.6.0",
"highlight.js": "^11.9.0",
"markdown-it": "^14.1.0",
"markdown-it-attrs": "^4.3.1",
"prettier": "^3.6.2",
"sass": "^1.89.2",
"typescript": "^5.8.3",
"vite": "^7.0.4",
"vite-plugin-banner": "^0.8.1",
"vite-plugin-dts": "^4.5.4",
"vue-tsc": "^3.0.1"
},
"files": [
"dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
}
}