-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.48 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.48 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "ueditor-plus-designer",
"version": "0.2.0",
"description": "可视化排版编辑器 - 基于UEditor的可视化内容设计工具",
"main": "dist/vue/vue.umd.js",
"module": "dist/vue/vue.es.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/vue/vue.es.js",
"require": "./dist/vue/vue.umd.js",
"types": "./dist/types/index.d.ts"
},
"./react": {
"import": "./dist/react/react.es.js",
"require": "./dist/react/react.umd.js",
"types": "./dist/types/index.d.ts"
},
"./style": "./dist/vue/vue-style.css"
},
"files": [
"dist/standalone",
"dist/types",
"dist/vue",
"dist/react",
"src/types",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "vite",
"build": "npm run build:demo && npm run build:vue && npm run build:react && npm run build:standalone && npm run type-check",
"build:vue": "vite build --config vite.config.vue.ts",
"build:react": "vite build --config vite.config.react.ts",
"build:demo": "vite build --config vite.config.demo.ts",
"build:standalone": "vite build --config vite.config.standalone.ts",
"preview": "vite preview",
"preview:demo": "vite preview --config vite.config.demo.ts",
"preview:standalone": "npx serve -p 3000 .",
"type-check": "tsc --noEmit",
"docs:dev": "cd doc && npm run dev",
"docs:build": "cd doc && npm run build",
"docs:preview": "cd doc && npm run preview",
"examples:build": "cd examples/vue && npm run build && cd ../react && npm run build"
},
"keywords": [
"ueditor",
"editor",
"visual-editor",
"layout-designer",
"vue3",
"react",
"wysiwyg"
],
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@types/node": "^20.10.0",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@vitejs/plugin-react": "^4.2.1",
"@vitejs/plugin-vue": "^5.0.0",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"sass": "^1.69.5",
"typescript": "^5.3.3",
"vite": "^5.0.8",
"vite-plugin-dts": "^4.5.4",
"vue-tsc": "^1.8.27"
},
"dependencies": {
"font-awesome": "^4.7.0",
"veaury": "^2.2.0",
"vue": "^3.4.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0",
"vue": "^3.4.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
},
"vue": {
"optional": true
}
}
}