-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
56 lines (56 loc) · 1.6 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
{
"name": "@oakjs/addon-ckeditor5-react",
"version": "3.11.2",
"description": "🌳 Modern, lightweight & modulable page builder",
"main": "dist/oak-addon-ckeditor.cjs.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/p3ol/oak.git",
"directory": "packages/addon-ckeditor5-react"
},
"author": "Ugo Stephant <[email protected]>",
"license": "MIT",
"sideEffects": false,
"engines": {
"node": ">= 18"
},
"peerDependencies": {
"@ckeditor/ckeditor5-react": "^6.0.0 || ^7.0.0",
"@oakjs/react": "^3.0.0",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"dependencies": {
"@oakjs/ckeditor5-build-custom": "^3.11.2"
},
"devDependencies": {
"@oakjs/ckeditor5-build-custom": "workspace:*",
"@oakjs/react": "workspace:*"
},
"scripts": {
"clean": "rm -rf ./dist || true",
"build": "yarn clean && yarn build:code && yarn build:dts",
"build:code": "yarn run -T rollup --configPlugin @rollup/plugin-swc -c",
"build:dts": "yarn run -T tsc --project ./tsconfig.build.json",
"test": "jest"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/oak-addon-ckeditor.cjs.js",
"types": "./dist/types/index.d.ts"
},
"./addons": {
"import": "./dist/esm/addons.js",
"require": "./dist/oak-addon-ckeditor.cjs.js",
"types": "./dist/types/addons.d.ts"
},
"./dist/*": "./dist/*"
},
"gitHead": "d75c061fe25d641c27268b3995ede1b047369787"
}