-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
/
Copy pathpackage.json
53 lines (53 loc) · 1.4 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
{
"name": "@ckeditor/ckeditor5-basic-styles",
"version": "39.0.2",
"description": "Basic styles feature for CKEditor 5.",
"keywords": [
"ckeditor",
"ckeditor5",
"ckeditor 5",
"ckeditor5-feature",
"ckeditor5-plugin",
"ckeditor5-dll"
],
"main": "src/index.ts",
"dependencies": {
"ckeditor5": "39.0.2"
},
"devDependencies": {
"@ckeditor/ckeditor5-core": "39.0.2",
"@ckeditor/ckeditor5-dev-utils": "^38.0.0",
"@ckeditor/ckeditor5-editor-classic": "39.0.2",
"@ckeditor/ckeditor5-engine": "39.0.2",
"@ckeditor/ckeditor5-essentials": "39.0.2",
"@ckeditor/ckeditor5-paragraph": "39.0.2",
"@ckeditor/ckeditor5-theme-lark": "39.0.2",
"@ckeditor/ckeditor5-ui": "39.0.2",
"@ckeditor/ckeditor5-utils": "39.0.2",
"typescript": "^4.8.4",
"webpack": "^5.58.1",
"webpack-cli": "^4.9.0"
},
"author": "CKSource (http://cksource.com/)",
"license": "GPL-2.0-or-later",
"homepage": "https://ckeditor.com/ckeditor-5",
"bugs": "https://github.com/ckeditor/ckeditor5/issues",
"repository": {
"type": "git",
"url": "https://github.com/ckeditor/ckeditor5.git",
"directory": "packages/ckeditor5-basic-styles"
},
"files": [
"lang",
"src/**/*.js",
"src/**/*.d.ts",
"theme",
"build",
"ckeditor5-metadata.json",
"CHANGELOG.md"
],
"scripts": {
"dll:build": "webpack",
"build": "tsc -p ./tsconfig.json"
}
}