-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.63 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
{
"name": "@spark-build/ckeditor-5",
"version": "0.0.1",
"description": "ckeditor5 wrapper",
"author": "[email protected]",
"license": "MIT",
"main": "lib/index.js",
"module": "es/index.js",
"typings": "es/index.d.ts",
"files": [
"lib",
"es"
],
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"scripts": {
"build": "yarn father-build build",
"publishPkg": "yarn build && npm version patch && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spark-build/ckeditor5.git"
},
"bugs": {
"url": "https://github.com/spark-build/ckeditor5/issues"
},
"homepage": "https://github.com/spark-build/ckeditor5#readme",
"sideEffects": [
"*.less"
],
"browserslist": [
"last 2 versions",
"Firefox ESR",
"> 1%",
"ie >= 11"
],
"dependencies": {
"@babel/runtime": "^7.12.5",
"@ckeditor/ckeditor5-alignment": "^24.0.0",
"@ckeditor/ckeditor5-autoformat": "^24.0.0",
"@ckeditor/ckeditor5-basic-styles": "^24.0.0",
"@ckeditor/ckeditor5-block-quote": "^24.0.0",
"@ckeditor/ckeditor5-dev-utils": "^23.6.1",
"@ckeditor/ckeditor5-dev-webpack-plugin": "^23.6.1",
"@ckeditor/ckeditor5-editor-classic": "^24.0.0",
"@ckeditor/ckeditor5-editor-decoupled": "^24.0.0",
"@ckeditor/ckeditor5-essentials": "^24.0.0",
"@ckeditor/ckeditor5-font": "^24.0.0",
"@ckeditor/ckeditor5-heading": "^24.0.0",
"@ckeditor/ckeditor5-highlight": "^24.0.0",
"@ckeditor/ckeditor5-horizontal-line": "^24.0.0",
"@ckeditor/ckeditor5-image": "^24.0.0",
"@ckeditor/ckeditor5-indent": "^24.0.0",
"@ckeditor/ckeditor5-link": "^24.0.0",
"@ckeditor/ckeditor5-list": "^24.0.0",
"@ckeditor/ckeditor5-markdown-gfm": "^24.0.0",
"@ckeditor/ckeditor5-media-embed": "^24.0.0",
"@ckeditor/ckeditor5-paragraph": "^24.0.0",
"@ckeditor/ckeditor5-paste-from-office": "^24.0.0",
"@ckeditor/ckeditor5-react": "^3.0.0",
"@ckeditor/ckeditor5-remove-format": "^24.0.0",
"@ckeditor/ckeditor5-table": "^24.0.0",
"@ckeditor/ckeditor5-theme-lark": "^24.0.0",
"@ckeditor/ckeditor5-word-count": "^24.0.0",
"lodash.debounce": "^4.0.8",
"lodash.isequal": "^4.5.0",
"webpack-chain": "^6.5.1"
},
"devDependencies": {
"@spark-build/lint": "^0.0.8",
"@types/lodash.debounce": "^4.0.6",
"@types/lodash.isequal": "^4.5.5",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"ahooks": "^2.9.2",
"father-build": "^1.19.1",
"typescript": "^4.1.3"
},
"peerDependencies": {
"ahooks": ">=2.9.2",
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
}
}