-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 2.01 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
{
"name": "@webspellchecker/wproofreader-ckeditor5",
"version": "3.1.2",
"description": "Multilingual spelling and grammar checking plugin for CKEditor 5",
"repository": {
"type": "git",
"url": "https://github.com/WebSpellChecker/wproofreader-ckeditor5.git"
},
"scripts": {
"start": "./node_modules/.bin/webpack --mode development -w",
"build": "./node_modules/.bin/webpack --mode production",
"build:dist": "node ./scripts/build-dist.mjs",
"prepare": "npm run build:dist",
"test": "concurrently --kill-others --success \"first\" \"ckeditor5-package-tools test\" \"http-server -c-0 --cors -p 3000 -s\""
},
"author": "WebSpellChecker (https://webspellchecker.com/)",
"bugs": {
"url": "https://github.com/WebSpellChecker/wproofreader-ckeditor5/issues"
},
"homepage": "https://github.com/WebSpellChecker/wproofreader-ckeditor5#readme",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"exports": {
".": {
"types": "./src/index.d.ts",
"import": "./dist/index.js"
},
"./*": "./dist/*",
"./browser/*": null,
"./src/*": "./src/*",
"./theme/*": "./theme/*",
"./package.json": "./package.json"
},
"files": [
"dist",
"lang",
"src",
"theme"
],
"keywords": [
"spelling check",
"grammar checking",
"spelling checker for ckeditor 5",
"text proofreading in CKEditor 5",
"webspellchecker",
"ckeditor 5",
"wproofreader"
],
"devDependencies": {
"@ckeditor/ckeditor5-dev-utils": "^42.0.0",
"@ckeditor/ckeditor5-dev-build-tools": "^42.0.0",
"@ckeditor/ckeditor5-package-tools": "^2.0.0",
"ckeditor5": "^43.0.0",
"concurrently": "^8.0.1",
"css-loader": "^6.7.3",
"eslint": "^8.40.0",
"http-server": "^14.1.1",
"postcss-loader": "^7.3.0",
"raw-loader": "^4.0.2",
"style-loader": "^3.3.2",
"webpack": "^5.82.0",
"webpack-cli": "^5.1.1"
},
"peerDependencies": {
"ckeditor5": ">=43.0.0"
},
"types": "./src/index.d.ts"
}