inkora 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/package.json ADDED
@@ -0,0 +1,90 @@
1
+ {
2
+ "name": "inkora",
3
+ "version": "0.1.0",
4
+ "description": "Inkora — plug-and-play TipTap v3 rich text editor for React with toolbar, media, tables, math and dark mode",
5
+ "keywords": [
6
+ "inkora",
7
+ "tiptap",
8
+ "rich-text-editor",
9
+ "react",
10
+ "wysiwyg",
11
+ "editor",
12
+ "prosemirror",
13
+ "markdown"
14
+ ],
15
+ "author": "Ishu Barman <ishu.barman9067900@gmail.com> (https://github.com/ishubarman7)",
16
+ "license": "MIT",
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "https://github.com/ishubarman7/inkora.git"
20
+ },
21
+ "bugs": {
22
+ "url": "https://github.com/ishubarman7/inkora/issues"
23
+ },
24
+ "homepage": "https://github.com/ishubarman7/inkora#readme",
25
+ "type": "module",
26
+ "main": "dist/index.cjs",
27
+ "module": "dist/index.js",
28
+ "exports": {
29
+ ".": {
30
+ "import": "./dist/index.js",
31
+ "require": "./dist/index.cjs"
32
+ }
33
+ },
34
+ "files": [
35
+ "dist",
36
+ "README.md",
37
+ "LICENSE"
38
+ ],
39
+ "sideEffects": false,
40
+ "scripts": {
41
+ "build": "tsup",
42
+ "dev": "tsup --watch",
43
+ "prepublishOnly": "npm run build"
44
+ },
45
+ "peerDependencies": {
46
+ "@tiptap/core": "^3.0.0",
47
+ "@tiptap/extension-character-count": "^3.0.0",
48
+ "@tiptap/extension-code-block-lowlight": "^3.0.0",
49
+ "@tiptap/extension-color": "^3.0.0",
50
+ "@tiptap/extension-dropcursor": "^3.0.0",
51
+ "@tiptap/extension-font-family": "^3.0.0",
52
+ "@tiptap/extension-gapcursor": "^3.0.0",
53
+ "@tiptap/extension-highlight": "^3.0.0",
54
+ "@tiptap/extension-image": "^3.0.0",
55
+ "@tiptap/extension-link": "^3.0.0",
56
+ "@tiptap/extension-mention": "^3.0.0",
57
+ "@tiptap/extension-placeholder": "^3.0.0",
58
+ "@tiptap/extension-subscript": "^3.0.0",
59
+ "@tiptap/extension-superscript": "^3.0.0",
60
+ "@tiptap/extension-table": "^3.0.0",
61
+ "@tiptap/extension-task-item": "^3.0.0",
62
+ "@tiptap/extension-task-list": "^3.0.0",
63
+ "@tiptap/extension-text-align": "^3.0.0",
64
+ "@tiptap/extension-text-style": "^3.0.0",
65
+ "@tiptap/extension-underline": "^3.0.0",
66
+ "@tiptap/extension-youtube": "^3.0.0",
67
+ "@tiptap/pm": "^3.0.0",
68
+ "@tiptap/react": "^3.0.0",
69
+ "@tiptap/starter-kit": "^3.0.0",
70
+ "katex": ">=0.16.0",
71
+ "react": ">=18.0.0",
72
+ "react-dom": ">=18.0.0"
73
+ },
74
+ "peerDependenciesMeta": {
75
+ "katex": {
76
+ "optional": true
77
+ }
78
+ },
79
+ "dependencies": {
80
+ "lowlight": "^3.0.0",
81
+ "tippy.js": "^6.3.7",
82
+ "tiptap-extension-global-drag-handle": "^0.1.18"
83
+ },
84
+ "devDependencies": {
85
+ "react": "^18.0.0",
86
+ "react-dom": "^18.0.0",
87
+ "tsup": "^8.0.0",
88
+ "typescript": "^6.0.3"
89
+ }
90
+ }