christy-richtext 1.0.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/package.json ADDED
@@ -0,0 +1,96 @@
1
+ {
2
+ "name": "christy-richtext",
3
+ "version": "1.0.0",
4
+ "description": "A Vue 3 rich text editor component built on Tiptap — with Word import/export, image cloud upload, PDF export and AI writing assistance",
5
+ "author": "Christy Love <hsinyen320@gmail.com> (https://www.christylove.com.tw)",
6
+ "license": "MIT",
7
+ "homepage": "https://github.com/ss012932/Christy-RichText#readme",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/ss012932/Christy-RichText.git",
11
+ "directory": "christy-richtext"
12
+ },
13
+ "bugs": {
14
+ "url": "https://github.com/ss012932/Christy-RichText/issues"
15
+ },
16
+ "type": "module",
17
+ "main": "./dist-lib/christy-richtext.umd.cjs",
18
+ "module": "./dist-lib/christy-richtext.js",
19
+ "exports": {
20
+ ".": {
21
+ "import": "./dist-lib/christy-richtext.js",
22
+ "require": "./dist-lib/christy-richtext.umd.cjs"
23
+ },
24
+ "./style.css": "./dist-lib/style.css"
25
+ },
26
+ "types": "./dist-lib/index.d.ts",
27
+ "files": [
28
+ "dist-lib"
29
+ ],
30
+ "publishConfig": {
31
+ "access": "public"
32
+ },
33
+ "scripts": {
34
+ "dev": "vite",
35
+ "build": "run-p type-check \"build-only {@}\" --",
36
+ "build:lib": "BUILD_MODE=lib vite build",
37
+ "preview": "vite preview",
38
+ "build-only": "vite build",
39
+ "type-check": "vue-tsc --build"
40
+ },
41
+ "keywords": [
42
+ "vue3",
43
+ "rich-text",
44
+ "editor",
45
+ "tiptap",
46
+ "wysiwyg",
47
+ "word-import",
48
+ "word-export",
49
+ "docx",
50
+ "image-upload",
51
+ "ai-writing"
52
+ ],
53
+ "peerDependencies": {
54
+ "vue": "^3.0.0"
55
+ },
56
+ "dependencies": {
57
+ "@tiptap/extension-color": "^3.26.0",
58
+ "@tiptap/extension-font-family": "^3.26.0",
59
+ "@tiptap/extension-highlight": "^3.26.0",
60
+ "@tiptap/extension-image": "^3.26.0",
61
+ "@tiptap/extension-link": "^3.26.0",
62
+ "@tiptap/extension-placeholder": "^3.26.0",
63
+ "@tiptap/extension-strike": "^3.26.0",
64
+ "@tiptap/extension-table": "^3.26.0",
65
+ "@tiptap/extension-table-cell": "^3.26.0",
66
+ "@tiptap/extension-table-header": "^3.26.0",
67
+ "@tiptap/extension-table-row": "^3.26.0",
68
+ "@tiptap/extension-text-align": "^3.26.0",
69
+ "@tiptap/extension-text-style": "^3.26.0",
70
+ "@tiptap/extension-underline": "^3.26.0",
71
+ "@tiptap/pm": "^3.26.0",
72
+ "@tiptap/starter-kit": "^3.26.0",
73
+ "@tiptap/vue-3": "^3.26.0",
74
+ "axios": "^1.17.0",
75
+ "html-to-docx": "^1.8.0",
76
+ "mammoth": "^1.12.0"
77
+ },
78
+ "devDependencies": {
79
+ "@tsconfig/node24": "^24.0.4",
80
+ "@types/node": "^24.12.2",
81
+ "@vitejs/plugin-vue": "^6.0.6",
82
+ "@vue/tsconfig": "^0.9.1",
83
+ "npm-run-all2": "^8.0.4",
84
+ "rolldown": "^1.1.0",
85
+ "typescript": "~6.0.0",
86
+ "vite": "^8.0.8",
87
+ "vite-plugin-dts": "^4.5.4",
88
+ "vite-plugin-node-polyfills": "^0.28.0",
89
+ "vite-plugin-vue-devtools": "^8.1.1",
90
+ "vue": "^3.5.32",
91
+ "vue-tsc": "^3.2.6"
92
+ },
93
+ "engines": {
94
+ "node": "^20.19.0 || >=22.12.0"
95
+ }
96
+ }