-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.46 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.46 KB
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": "@overlap/rte",
"version": "0.2.0",
"description": "A lightweight, extensible Rich Text Editor for React",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE"
],
"type": "module",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"prepublishOnly": "npm run build",
"bump": "node tools/scripts/bumpVersion.mjs",
"publish:package": "node tools/scripts/publish.mjs"
},
"keywords": [
"react",
"rich-text-editor",
"rte",
"contenteditable",
"editor"
],
"license": "MIT",
"author": "Almir Nakicevic <a.nakicevic@overlap.at>",
"repository": {
"type": "git",
"url": "git+https://github.com/overlap-dev/rte.git"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"rollup": "^4.6.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-dts": "^6.1.0",
"typescript": "^5.3.3",
"tslib": "^2.8.1"
},
"homepage": "https://github.com/overlap-dev/rte#readme"
}