-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.25 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.25 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
{
"name": "editor",
"version": "0.1.0",
"private": true,
"main": "./components/index.ts",
"types": "./components/index.ts",
"exports": {
".": "./components/index.ts",
"./components": "./components/index.ts",
"./TiptapEditor": "./components/TiptapEditor.tsx",
"./SimpleEditor": "./components/tiptap-templates/simple/simple-editor.tsx",
"./DeleteNodeButton": "./components/tiptap-ui/delete-node-button/index.tsx",
"./ImageAlignButton": "./components/tiptap-ui/image-align-button/index.tsx",
"./TableButton": "./components/tiptap-ui/table-button/index.tsx",
"./TableMenu": "./components/tiptap-ui/table-menu/index.tsx",
"./DragHandle": "./components/tiptap-ui/drag-handle/index.tsx"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint"
},
"dependencies": {
"@floating-ui/react": "^0.27.19",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-popover": "^1.1.15",
"@tailwindcss/typography": "^0.5.19",
"@tiptap/core": "^3.20.0",
"@tiptap/extension-bubble-menu": "^3.20.0",
"@tiptap/extension-highlight": "^3.20.0",
"@tiptap/extension-horizontal-rule": "^3.20.0",
"@tiptap/extension-image": "^3.20.0",
"@tiptap/extension-list": "^3.20.0",
"@tiptap/extension-subscript": "^3.20.0",
"@tiptap/extension-superscript": "^3.20.0",
"@tiptap/extension-table": "^3.20.0",
"@tiptap/extension-table-cell": "^3.20.0",
"@tiptap/extension-table-header": "^3.20.0",
"@tiptap/extension-table-row": "^3.20.0",
"@tiptap/extension-text-align": "^3.20.0",
"@tiptap/extension-typography": "^3.20.0",
"@tiptap/extensions": "^3.20.0",
"@tiptap/pm": "^3.20.0",
"@tiptap/react": "^3.20.0",
"@tiptap/starter-kit": "^3.20.0",
"lodash.throttle": "^4.1.1",
"lucide-react": "^0.576.0",
"next": "16.1.6",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-hotkeys-hook": "^5.2.4"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/lodash.throttle": "^4.1.9",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"sass": "^1.97.3",
"tailwindcss": "^4",
"typescript": "^5"
}
}