-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
114 lines (114 loc) · 3.98 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "v-formly-v3",
"version": "1.1.4",
"private": false,
"main": "./lib/antdv/v-formly-v3-antdv.umd.js",
"module": "./lib/antdv/v-formly-v3-antdv.es.js",
"exports": {
".": {
"import": "./lib/antdv/v-formly-v3-antdv.es.js",
"require": "./lib/antdv/v-formly-v3-antdv.umd.js"
},
"./antdv": {
"import": "./lib/antdv/v-formly-v3-antdv.es.js",
"require": "./lib/antdv/v-formly-v3-antdv.umd.js"
},
"./element": {
"import": "./lib/element/v-formly-v3-element.es.js",
"require": "./lib/element/v-formly-v3-element.umd.js"
},
"./devui": {
"import": "./lib/devui/v-formly-v3-devui.es.js",
"require": "./lib/devui/v-formly-v3-devui.umd.js"
}
},
"types": "./v-formly-v3.d.ts",
"files": [
"lib/*",
"types/*",
"v-formly-v3.d.ts",
"antdv.d.ts",
"element.d.ts",
"devui.d.ts"
],
"keywords": [
"vue",
"vuejs",
"vue 3",
"json schema",
"ajv",
"validation",
"form",
"formly",
"v-formly",
"vue formly",
"v-formly-v3"
],
"scripts": {
"dev:antdv": "vite serve src/ant-design-vue/examples/ --config ./vite.config.ts",
"dev:element": "vite serve src/element-plus/examples/ --config ./vite.config.ts",
"dev:devui": "vite serve src/devui-vue/examples/ --config ./vite.config.ts",
"cli": "vite --help",
"preview": "vite preview --port 4173",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"build": "run-s build:lib:antdv build:lib:element build:lib:devui",
"build:lib:antdv": "vite --config vite.config.antdv.ts build",
"build:lib:element": "vite --config vite.config.element.ts build",
"build:lib:devui": "vite --config vite.config.devui.ts build",
"docs:dev:antdv": "cross-env VFORMLY_LIB=antdv vuepress dev docs --clean-temp --clean-cache",
"docs:dev:element": "cross-env VFORMLY_LIB=element vuepress dev docs --clean-temp --clean-cache",
"docs:dev:devui": "cross-env VFORMLY_LIB=devui vuepress dev docs --clean-temp --clean-cache",
"docs:build": "run-s docs:build:antdv docs:build:element docs:build:devui",
"docs:build-test": "cross-env BUILD_MODE=test run-s docs:build:antdv docs:build:element docs:build:devui",
"docs:build:antdv": "cross-env VFORMLY_LIB=antdv vuepress build docs",
"docs:build:element": "cross-env VFORMLY_LIB=element vuepress build docs -d './docs/.vuepress/dist/element-plus'",
"docs:build:devui": "cross-env VFORMLY_LIB=devui vuepress build docs -d './docs/.vuepress/dist/vue-devui'"
},
"author": "KevinZhang19870314",
"license": "MIT",
"dependencies": {
"ajv": "^8.11.0",
"mitt": "^3.0.0"
},
"devDependencies": {
"@ant-design/icons-vue": "^6.1.0",
"@devui-design/icons": "^1.3.0",
"@element-plus/icons-vue": "^2.0.10",
"@rushstack/eslint-patch": "^1.1.4",
"@types/node": "^16.11.56",
"@vitejs/plugin-vue": "^3.0.3",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/tsconfig": "^0.1.3",
"@vuepress/plugin-pwa": "^2.0.0-beta.53",
"@vuepress/plugin-pwa-popup": "^2.0.0-beta.53",
"@vuepress/plugin-register-components": "^2.0.0-beta.53",
"@vuepress/plugin-search": "^2.0.0-beta.53",
"ant-design-vue": "^3.2.13",
"cross-env": "^7.0.3",
"dayjs": "^1.11.6",
"devui-theme": "^0.0.4",
"element-plus": "^2.2.20",
"eslint": "^8.22.0",
"eslint-plugin-vue": "^9.3.0",
"less": "^4.1.3",
"less-loader": "^11.1.0",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"pinia": "^2.0.23",
"prettier": "^2.7.1",
"sass-loader": "^13.1.0",
"typescript": "~4.7.4",
"unplugin-vue-setup-extend-plus": "^0.3.2",
"vite": "^3.0.9",
"vite-plugin-dts": "^1.7.1",
"vite-plugin-vue-setup-extend": "^0.4.0",
"vue": "^3.2.38",
"vue-devui": "^1.3.2",
"vue-router": "^4.1.5",
"vue-tsc": "^0.40.7",
"vuepress": "^2.0.0-beta.53"
}
}