pagemaster-editor 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +97 -0
- package/dist/docxExport-C4g0WBf1.js +14192 -0
- package/dist/favicon.ico +0 -0
- package/dist/html2canvas-DvGd-Pek.js +25 -0
- package/dist/index-Bi7532a5.js +89078 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.es-CTn8zMre.js +5647 -0
- package/dist/pagemaster-editor.js +5 -0
- package/dist/pagemaster-editor.umd.cjs +967 -0
- package/dist/placeholder.svg +1 -0
- package/dist/purify.es-CP0Oxyr7.js +562 -0
- package/dist/robots.txt +14 -0
- package/dist/style.css +1 -0
- package/package.json +133 -0
package/package.json
ADDED
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pagemaster-editor",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "0.1.0",
|
|
5
|
+
"description": "A powerful, DOCX-style rich text editor and PDF viewer for React applications.",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"react",
|
|
8
|
+
"editor",
|
|
9
|
+
"tiptap",
|
|
10
|
+
"docx",
|
|
11
|
+
"pdf",
|
|
12
|
+
"wysiwyg",
|
|
13
|
+
"rich-text"
|
|
14
|
+
],
|
|
15
|
+
"author": "Surendra Singh",
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"type": "module",
|
|
18
|
+
"main": "./dist/pagemaster-editor.umd.cjs",
|
|
19
|
+
"module": "./dist/pagemaster-editor.js",
|
|
20
|
+
"types": "./dist/index.d.ts",
|
|
21
|
+
"files": [
|
|
22
|
+
"dist"
|
|
23
|
+
],
|
|
24
|
+
"exports": {
|
|
25
|
+
".": {
|
|
26
|
+
"import": "./dist/pagemaster-editor.js",
|
|
27
|
+
"require": "./dist/pagemaster-editor.umd.cjs"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"scripts": {
|
|
31
|
+
"dev": "vite",
|
|
32
|
+
"start": "vite",
|
|
33
|
+
"build": "tsc && vite build",
|
|
34
|
+
"lint": "eslint .",
|
|
35
|
+
"preview": "vite preview"
|
|
36
|
+
},
|
|
37
|
+
"peerDependencies": {
|
|
38
|
+
"react": ">=18",
|
|
39
|
+
"react-dom": ">=18"
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"@hookform/resolvers": "^3.10.0",
|
|
43
|
+
"@radix-ui/react-accordion": "^1.2.11",
|
|
44
|
+
"@radix-ui/react-alert-dialog": "^1.1.14",
|
|
45
|
+
"@radix-ui/react-aspect-ratio": "^1.1.7",
|
|
46
|
+
"@radix-ui/react-avatar": "^1.1.10",
|
|
47
|
+
"@radix-ui/react-checkbox": "^1.3.2",
|
|
48
|
+
"@radix-ui/react-collapsible": "^1.1.11",
|
|
49
|
+
"@radix-ui/react-context-menu": "^2.2.15",
|
|
50
|
+
"@radix-ui/react-dialog": "^1.1.14",
|
|
51
|
+
"@radix-ui/react-dropdown-menu": "^2.1.15",
|
|
52
|
+
"@radix-ui/react-hover-card": "^1.1.14",
|
|
53
|
+
"@radix-ui/react-label": "^2.1.7",
|
|
54
|
+
"@radix-ui/react-menubar": "^1.1.15",
|
|
55
|
+
"@radix-ui/react-navigation-menu": "^1.2.13",
|
|
56
|
+
"@radix-ui/react-popover": "^1.1.14",
|
|
57
|
+
"@radix-ui/react-progress": "^1.1.7",
|
|
58
|
+
"@radix-ui/react-radio-group": "^1.3.7",
|
|
59
|
+
"@radix-ui/react-scroll-area": "^1.2.9",
|
|
60
|
+
"@radix-ui/react-select": "^2.2.5",
|
|
61
|
+
"@radix-ui/react-separator": "^1.1.7",
|
|
62
|
+
"@radix-ui/react-slider": "^1.3.5",
|
|
63
|
+
"@radix-ui/react-slot": "^1.2.3",
|
|
64
|
+
"@radix-ui/react-switch": "^1.2.5",
|
|
65
|
+
"@radix-ui/react-tabs": "^1.1.12",
|
|
66
|
+
"@radix-ui/react-toast": "^1.2.14",
|
|
67
|
+
"@radix-ui/react-toggle": "^1.1.9",
|
|
68
|
+
"@radix-ui/react-toggle-group": "^1.1.10",
|
|
69
|
+
"@radix-ui/react-tooltip": "^1.2.7",
|
|
70
|
+
"@tanstack/react-query": "^5.83.0",
|
|
71
|
+
"@tiptap/extension-color": "^3.11.0",
|
|
72
|
+
"@tiptap/extension-font-family": "^3.11.0",
|
|
73
|
+
"@tiptap/extension-font-size": "^3.0.0-next.3",
|
|
74
|
+
"@tiptap/extension-highlight": "^3.11.0",
|
|
75
|
+
"@tiptap/extension-image": "^3.14.0",
|
|
76
|
+
"@tiptap/extension-link": "^3.11.0",
|
|
77
|
+
"@tiptap/extension-table": "^3.11.0",
|
|
78
|
+
"@tiptap/extension-table-cell": "^3.11.0",
|
|
79
|
+
"@tiptap/extension-table-header": "^3.11.0",
|
|
80
|
+
"@tiptap/extension-table-row": "^3.11.0",
|
|
81
|
+
"@tiptap/extension-text-align": "^3.11.0",
|
|
82
|
+
"@tiptap/extension-text-style": "^3.11.0",
|
|
83
|
+
"@tiptap/extension-underline": "^3.11.0",
|
|
84
|
+
"@tiptap/react": "^3.11.0",
|
|
85
|
+
"@tiptap/starter-kit": "^3.11.0",
|
|
86
|
+
"class-variance-authority": "^0.7.1",
|
|
87
|
+
"clsx": "^2.1.1",
|
|
88
|
+
"cmdk": "^1.1.1",
|
|
89
|
+
"date-fns": "^3.6.0",
|
|
90
|
+
"docx": "^9.5.1",
|
|
91
|
+
"embla-carousel-react": "^8.6.0",
|
|
92
|
+
"html2pdf.js": "^0.12.1",
|
|
93
|
+
"htmlparser2": "^10.0.0",
|
|
94
|
+
"input-otp": "^1.4.2",
|
|
95
|
+
"lucide-react": "^0.462.0",
|
|
96
|
+
"mammoth": "^1.11.0",
|
|
97
|
+
"next-themes": "^0.3.0",
|
|
98
|
+
"react-day-picker": "^8.10.1",
|
|
99
|
+
"react-hook-form": "^7.61.1",
|
|
100
|
+
"react-pdf": "^10.2.0",
|
|
101
|
+
"react-resizable-panels": "^2.1.9",
|
|
102
|
+
"react-router-dom": "^6.30.1",
|
|
103
|
+
"recharts": "^2.15.4",
|
|
104
|
+
"sonner": "^1.7.4",
|
|
105
|
+
"tailwind-merge": "^2.6.0",
|
|
106
|
+
"tailwindcss-animate": "^1.0.7",
|
|
107
|
+
"vaul": "^0.9.9",
|
|
108
|
+
"zod": "^3.25.76"
|
|
109
|
+
},
|
|
110
|
+
"devDependencies": {
|
|
111
|
+
"@eslint/js": "^9.32.0",
|
|
112
|
+
"@tailwindcss/typography": "^0.5.16",
|
|
113
|
+
"@types/file-saver": "^2.0.7",
|
|
114
|
+
"@types/node": "^22.16.5",
|
|
115
|
+
"@types/react": "^18.3.23",
|
|
116
|
+
"@types/react-dom": "^18.3.7",
|
|
117
|
+
"@vitejs/plugin-react-swc": "^3.11.0",
|
|
118
|
+
"autoprefixer": "^10.4.21",
|
|
119
|
+
"eslint": "^9.32.0",
|
|
120
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
121
|
+
"eslint-plugin-react-refresh": "^0.4.20",
|
|
122
|
+
"globals": "^15.15.0",
|
|
123
|
+
"lovable-tagger": "^1.1.11",
|
|
124
|
+
"postcss": "^8.5.6",
|
|
125
|
+
"react": "^19.2.3",
|
|
126
|
+
"react-dom": "^19.2.3",
|
|
127
|
+
"tailwindcss": "^3.4.17",
|
|
128
|
+
"typescript": "^5.8.3",
|
|
129
|
+
"typescript-eslint": "^8.38.0",
|
|
130
|
+
"vite": "^5.4.19",
|
|
131
|
+
"vite-plugin-dts": "^4.5.4"
|
|
132
|
+
}
|
|
133
|
+
}
|