-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.16 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
{
"name": "ckeditor5-custom-build",
"author": "CKSource",
"description": "A custom CKEditor 5 build made by the CKEditor 5 online builder.",
"version": "0.0.1",
"license": "SEE LICENSE IN LICENSE.md",
"private": true,
"main": "./build/ckeditor.js",
"types": "./build/ckeditor.d.ts",
"dependencies": {
"@ckeditor/ckeditor5-editor-classic": "40.1.0",
"@ckeditor/ckeditor5-essentials": "40.1.0",
"@ckeditor/ckeditor5-mention": "40.1.0",
"@ckeditor/ckeditor5-paragraph": "40.1.0"
},
"devDependencies": {
"@ckeditor/ckeditor5-core": "^40.1.0",
"@ckeditor/ckeditor5-dev-translations": "^32.1.2",
"@ckeditor/ckeditor5-dev-utils": "^32.1.2",
"@ckeditor/ckeditor5-theme-lark": "^40.1.0",
"css-loader": "^5.2.7",
"postcss": "^8.4.31",
"postcss-loader": "^4.3.0",
"raw-loader": "^4.0.2",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^4.2.3",
"ts-loader": "^9.5.1",
"typescript": "^4.9.5",
"webpack": "^5.89.0",
"webpack-cli": "^4.10.0"
},
"scripts": {
"build": "webpack --mode production",
"postbuild": "tsc --declaration --declarationDir build --stripInternal --emitDeclarationOnly"
}
}