-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.83 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 2.83 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
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
{
"name": "editium",
"version": "1.1.0",
"type": "module",
"description": "A powerful and feature-rich React rich text editor component built with Slate.js, featuring comprehensive formatting options, tables, images, find & replace, and more",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"vanilla",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c -w",
"dev": "npm run build:watch",
"example": "cd example && npm start",
"prepublishOnly": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"semantic-release": "semantic-release"
},
"keywords": [
"react",
"editor",
"rich-text",
"slate",
"wysiwyg",
"text-editor",
"contenteditable",
"markdown",
"formatting",
"tables",
"images",
"find-replace",
"fullscreen",
"word-count",
"character-count",
"slate-editor",
"react-editor",
"text-formatting",
"content-editor",
"document-editor"
],
"author": {
"name": "NabarupDev",
"url": "https://github.com/NabarupDev"
},
"repository": {
"type": "git",
"url": "https://github.com/NabarupDev/Editium.git"
},
"bugs": {
"url": "https://github.com/NabarupDev/Editium/issues"
},
"homepage": "https://github.com/NabarupDev/Editium#readme",
"license": "MIT",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"docx": "^9.5.1",
"emoji-picker-react": "^4.18.0",
"html2canvas": "^1.4.1",
"jspdf": "^3.0.3",
"mammoth": "^1.11.0",
"slate": "^0.103.0",
"slate-history": "^0.100.0",
"slate-react": "^0.108.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.6",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react": "^5.0.4",
"@vitest/ui": "^3.2.4",
"conventional-changelog-conventionalcommits": "^9.1.0",
"jsdom": "^27.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^4.9.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"semantic-release": "^24.2.9",
"tslib": "^2.8.1",
"typescript": "^5.3.3",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"publishConfig": {
"access": "public"
}
}