-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.89 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.89 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "react-konva-rich-text-editor",
"version": "1.1.5",
"description": "React Konva WYSIWYG rich text editor",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"type": "module",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c rollup.config.mjs",
"prepare": "npm run build",
"test": "your-test-script",
"lint": "eslint src"
},
"keywords": [
"react",
"konva",
"rich",
"text",
"editor",
"WYSIWYG",
"react-konva",
"rich-text",
"rich-text-editor"
],
"author": "ebubekir-tas",
"license": "ISC",
"peerDependencies": {
"@tiptap/core": ">=2.7.0",
"@tiptap/react": ">=2.7.0",
"konva": ">=8.0.0",
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"react-konva": ">=16.8.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-image": "^3.0.3",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.0",
"@rollup/plugin-url": "^8.0.2",
"@svgr/rollup": "^8.1.0",
"@types/react-dom": "^18.3.0",
"postcss-import": "^16.1.0",
"rollup": "^4.22.5",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.6.2"
},
"dependencies": {
"@tiptap/extension-bold": "^2.7.0",
"@tiptap/extension-color": "^2.7.0",
"@tiptap/extension-document": "^2.7.0",
"@tiptap/extension-font-family": "^2.7.0",
"@tiptap/extension-history": "^2.7.0",
"@tiptap/extension-italic": "^2.7.0",
"@tiptap/extension-paragraph": "^2.7.0",
"@tiptap/extension-strike": "^2.7.0",
"@tiptap/extension-text": "^2.7.0",
"@tiptap/extension-text-style": "^2.7.0",
"@tiptap/extension-underline": "^2.7.0",
"classnames": "^2.5.1",
"its-fine": "^1.2.5",
"styled-components": "^6.1.13"
}
}