-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.37 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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "you-want-vue3",
"version": "1.0.3",
"description": "vue3 组件解决方案",
"main": "lib/you-want-vue3.umd.js",
"files": [
"lib"
],
"module": "./lib/you-want-vue3.es.js",
"typings": "lib/index.d.ts",
"exports": {
".": {
"import": "./lib/you-want-vue3.es.js",
"require": "./lit/you-want-vue3.umd.js"
}
},
"keyword": [
"vue",
"vue3",
"ant",
"design",
"antD",
"vueComponent",
"component",
"components",
"ui",
"framework",
"frontend",
"form",
"table"
],
"author": "Rain9",
"private": false,
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"build:components": "node --trace-warnings ./build/build.js",
"lib": "npm run build:components"
},
"dependencies": {
"@ant-design/icons-vue": "^6.1.0",
"ant-design-vue": "^3.2.2",
"vue": "^3.2.25"
},
"devDependencies": {
"@vitejs/plugin-vue": "^2.3.1",
"@vitejs/plugin-vue-jsx": "^1.3.10",
"@vue/babel-plugin-jsx": "^1.1.1",
"less": "^4.1.2",
"typescript": "^4.5.4",
"unplugin-auto-import": "^0.7.1",
"unplugin-vue-components": "^0.19.3",
"vite": "^2.9.5",
"vite-plugin-dts": "^1.1.1",
"vite-plugin-inspect": "^0.5.0",
"vite-plugin-vue-setup-extend": "^0.4.0",
"vue-tsc": "^0.34.7"
}
}