-
Notifications
You must be signed in to change notification settings - Fork 100
/
package.json
129 lines (129 loc) · 3.76 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "@ckeditor/ckeditor5-react",
"version": "9.4.0",
"description": "Official React component for CKEditor 5 – the best browser-based rich text editor.",
"keywords": [
"wysiwyg",
"rich text",
"editor",
"html",
"contentEditable",
"editing",
"react",
"react-component",
"ckeditor",
"ckeditor5",
"ckeditor 5"
],
"type": "module",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
},
"./package.json": "./package.json"
},
"dependencies": {
"prop-types": "^15.7.2",
"@ckeditor/ckeditor5-integrations-common": "^2.2.2"
},
"peerDependencies": {
"ckeditor5": ">=42.0.0 || ^0.0.0-nightly",
"react": "^16.13.1 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.8",
"@ckeditor/ckeditor5-dev-bump-year": "^44.0.0",
"@ckeditor/ckeditor5-dev-ci": "^44.0.0",
"@ckeditor/ckeditor5-dev-release-tools": "^44.0.0",
"@ckeditor/ckeditor5-dev-utils": "^44.0.0",
"@testing-library/dom": "^10.3.1",
"@testing-library/react": "^16.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/browser": "^2.1.4",
"@vitest/coverage-istanbul": "^2.1.4",
"@vitest/ui": "^2.1.4",
"ckeditor5": "^43.1.0",
"ckeditor5-premium-features": "^43.1.0",
"coveralls": "^3.1.1",
"eslint": "^7.19.0",
"eslint-config-ckeditor5": "^7.1.0",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.2",
"lint-staged": "^10.2.11",
"listr2": "^6.5.0",
"minimist": "^1.2.5",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react16": "npm:react@^16.0.0",
"react16-dom": "npm:react-dom@^16.0.0",
"react17": "npm:react@^17.0.0",
"react17-dom": "npm:react-dom@^17.0.0",
"react18": "npm:react@^18.0.0",
"react18-dom": "npm:react-dom@^18.0.0",
"react19": "npm:[email protected]",
"react19-dom": "npm:[email protected]",
"semver": "^7.0.0",
"typescript": "^5.0.0",
"vite": "^5.3.1",
"vitest": "^2.1.4",
"webdriverio": "^8.39.0"
},
"resolutions": {
"wrap-ansi": "7.0.0",
"string-width": "4.1.0",
"semver": "^7.0.0",
"ws": "^8"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "echo \"Use 'dev:16', 'dev:17', 'dev:18', or 'dev:19' depending on the version of React you want to test\"",
"dev:16": "REACT_VERSION=16 vite",
"dev:17": "REACT_VERSION=17 vite",
"dev:18": "REACT_VERSION=18 vite",
"dev:19": "REACT_VERSION=19 vite",
"build": "vite build && tsc --emitDeclarationOnly",
"test": "vitest run --coverage",
"test:watch": "vitest --ui --watch",
"test:check:types": "tsc --noEmit -p ./tests/tsconfig.json",
"lint": "eslint --quiet \"**/*.{ts,tsx}\"",
"postinstall": "node ./scripts/postinstall.js",
"changelog": "node ./scripts/changelog.js",
"release:prepare-packages": "node ./scripts/preparepackages.js",
"release:publish-packages": "node ./scripts/publishpackages.js"
},
"author": "CKSource (http://cksource.com/)",
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "https://github.com/ckeditor/ckeditor5-react.git"
},
"bugs": {
"url": "https://github.com/ckeditor/ckeditor5-react/issues"
},
"homepage": "https://github.com/ckeditor/ckeditor5-react",
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE.md"
],
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --quiet"
]
},
"eslintIgnore": [
"**/*.d.ts",
"dist/**",
"coverage/**"
]
}