forked from SX-Code/form-designer-naiveui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
148 lines (148 loc) · 4.26 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "form-designer-naiveui",
"version": "1.0.9",
"description": "好用的vue可视化表单设计器组件",
"unpkg": "./dist/index.umd.js",
"jsdelivr": "./dist/index.umd.js",
"typings": "./types/index.d.ts",
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
},
"./locale/en" : {
"import": "./locale/en.mjs",
"require": "./locale/en.umd.js"
},
"./locale/zh-cn": {
"import": "./locale/zh-cn.mjs",
"require": "./locale/zh-cn.umd.js"
}
},
"scripts": {
"clean": "rimraf dist/",
"dev": "vue-cli-service serve",
"rollup": "rollup -c ./rollup.config.ts",
"build": "vite build --config ./vite.config.build.js",
"build:locale": "gulp -f gulpfile.js",
"build:preview": "vite build --config ./vite.config.preview.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sx-code/form-designer-naiveui.git"
},
"keywords": [
"表单设计器",
"@form-create",
"form-builder",
"form-designer",
"draggable",
"form",
"components",
"vue3",
"naive-ui",
"json-form",
"dynamic-form"
],
"files": [
"README.md",
"package.json",
"LICENSE",
"CHANGELOG.md",
"src",
"types",
"dist",
"locale"
],
"author": "swcode",
"license": "MIT",
"bugs": {
"url": "https://github.com/sx-code/form-designer-naiveui/issues"
},
"homepage": "http://designer.form-create.com",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@element-plus/icons-vue": "^0.2.6",
"@sixian/css-url": "^1.0.3",
"@types/chalk": "^2.2.0",
"@types/shelljs": "^0.8.9",
"@vitejs/plugin-vue": "^3.1.2",
"@vitejs/plugin-vue-jsx": "^2.0.1",
"@vue/babel-plugin-jsx": "^1.0.7",
"@vue/cli-plugin-babel": "^4.5.13",
"@vue/cli-service": "^4.5.3",
"@vue/compiler-sfc": "^3.0.11",
"babel-eslint": "^10.1.0",
"chalk": "^4.1.2",
"commander": "^6.0.0",
"commitizen": "^4.1.2",
"cross-env": "^7.0.2",
"css-loader": "^4.2.1",
"cssnano": "^5.1.13",
"cssnano-preset-advanced": "^5.3.8",
"cz-conventional-changelog": "^3.2.0",
"cz-customizable": "^6.3.0",
"dayjs": "^1.10.7",
"eslint": "^7.7.0",
"eslint-plugin-vue": "^6.2.2",
"esno": "^0.9.1",
"execa": "^5.1.1",
"fast-glob": "^3.2.7",
"figlet": "^1.5.0",
"fs-extra": "^10.0.0",
"gulp": "^4.0.2",
"html-webpack-plugin": "^4.3.0",
"humps": "^2.0.1",
"husky": "^4.2.5",
"jsonlint-mod": "^1.7.6",
"lint-staged": "^10.2.11",
"naive-ui": "^2.34.3",
"npm-run-all": "^4.1.5",
"ora": "^5.0.0",
"postcss": "^8.4.17",
"rimraf": "^3.0.2",
"rollup-plugin-visualizer": "^5.8.2",
"shelljs": "^0.8.4",
"stringify-author": "^0.1.3",
"tslib": "^2.3.1",
"typescript": "^4.4.3",
"vite": "^3.1.4",
"vite-plugin-banner": "^0.5.0",
"vite-plugin-css-injected-by-js": "^2.1.0",
"vue": "^3.1.5",
"vue-loader": "^15.9.3",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.11"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,vue}": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"@codemirror/autocomplete": "^6.5.1",
"@codemirror/lang-javascript": "^6.1.6",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/theme-one-dark": "^6.1.1",
"@form-create/component-wangeditor": "^3.1",
"@form-create/naive-ui": "^3.1.18",
"@form-create/utils": "^3.1.15",
"codemirror": "^6.0.1",
"vuedraggable": "4.1.0"
}
}