-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.76 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.76 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
{
"name": "gi-component",
"type": "module",
"version": "0.0.41",
"description": "Vue3中基于Element Plus二次封装基础组件库",
"author": "lin",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lin-97/gi-component.git"
},
"keywords": [
"element-plus",
"vitepress",
"vue3",
"gi-component",
"二次封装组件",
"封装组件"
],
"sideEffects": [
"packages/components/dialog/src/dialog.ts"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
},
"./dist/gi.css": "./dist/gi.css",
"./dist/components.d.ts": "./packages/components.d.ts"
},
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"packages"
],
"scripts": {
"dev": "vite --host",
"docs:dev": "cd docs && pnpm dev",
"docs:build": "cd docs && pnpm build",
"docs:preview": "cd docs && pnpm preview",
"build:lib": "vite build",
"build:docs": "cd docs && pnpm build",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"peerDependencies": {
"element-plus": "^2.11.0",
"vue": "^3.4.0"
},
"devDependencies": {
"@antfu/eslint-config": "^7.2.0",
"@element-plus/icons-vue": "^2.3.1",
"@types/node": "^24.2.0",
"@vitejs/plugin-vue": "^5.2.4",
"@vitejs/plugin-vue-jsx": "^4.2.0",
"element-plus": "^2.11.2",
"eslint": "^9.39.2",
"sass": "^1.89.0",
"sass-loader": "^16.0.5",
"terser": "^5.44.0",
"typescript": "^5.8.3",
"unplugin-vue-components": "^28.8.0",
"vite": "6.3.5",
"vite-plugin-dts": "^4.5.4",
"vue": "^3.5.15",
"vue-tsc": "^2.2.10",
"xe-utils": "^3.7.9"
}
}