-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.25 KB
/
package.json
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
{
"name": "tiptap-wp-editor",
"version": "1.0.0",
"description": "",
"main": "src/tiptap-wp-editor.tsx",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"lint:fix": "lint --fix",
"format": "prettier --write --ignore-path .gitignore \"./**/*.{js,jsx,ts,tsx,json,css}\""
},
"keywords": [
"tiptap",
"react",
"vite",
"wp-editor"
],
"author": "Oscar Arzola",
"license": "ISC",
"dependencies": {
"@babel/preset-react": "^7.25.9",
"@fontsource/inter": "^5.1.0",
"@hocuspocus/provider": "^2.14.0",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@tippyjs/react": "^4.2.6",
"@tiptap/core": "^2.10.2",
"@tiptap/extension-bullet-list": "2.8.0",
"@tiptap/extension-character-count": "2.8.0",
"@tiptap/extension-code-block": "2.8.0",
"@tiptap/extension-code-block-lowlight": "2.8.0",
"@tiptap/extension-collaboration": "2.8.0",
"@tiptap/extension-collaboration-cursor": "2.8.0",
"@tiptap/extension-color": "2.8.0",
"@tiptap/extension-document": "2.8.0",
"@tiptap/extension-dropcursor": "2.8.0",
"@tiptap/extension-focus": "2.8.0",
"@tiptap/extension-font-family": "2.8.0",
"@tiptap/extension-heading": "2.8.0",
"@tiptap/extension-highlight": "2.8.0",
"@tiptap/extension-horizontal-rule": "2.8.0",
"@tiptap/extension-image": "2.8.0",
"@tiptap/extension-link": "2.8.0",
"@tiptap/extension-ordered-list": "2.8.0",
"@tiptap/extension-paragraph": "2.8.0",
"@tiptap/extension-placeholder": "2.8.0",
"@tiptap/extension-subscript": "2.8.0",
"@tiptap/extension-superscript": "2.8.0",
"@tiptap/extension-table": "2.8.0",
"@tiptap/extension-table-header": "2.8.0",
"@tiptap/extension-table-row": "2.8.0",
"@tiptap/extension-task-item": "2.8.0",
"@tiptap/extension-task-list": "2.8.0",
"@tiptap/extension-text-align": "2.8.0",
"@tiptap/extension-text-style": "2.8.0",
"@tiptap/extension-typography": "2.8.0",
"@tiptap/extension-underline": "2.8.0",
"@tiptap/pm": "^2.10.2",
"@tiptap/react": "^2.10.2",
"@tiptap/starter-kit": "^2.10.2",
"@tiptap/suggestion": "2.8.0",
"@vitejs/plugin-react": "^4.3.3",
"autoprefixer": "10.4.14",
"clsx": "^2.1.1",
"postcss": "8.4.49",
"react": "^18.3.1",
"react-colorful": "^5.6.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"tailwind-merge": "^1.14.0",
"tailwindcss": "3.3.3",
"tailwindcss-animate": "^1.0.7",
"tippy.js": "^6.3.7",
"uuid": "^9.0.1",
"vite": "^5.4.11",
"y-prosemirror": "^1.2.11",
"yjs": "^13.6.18"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.9",
"@eslint/js": "^9.15.0",
"@tailwindcss/typography": "^0.5.14",
"@types/react": "18.2.48",
"@types/react-dom": "18.2.18",
"@types/styled-components": "^5.1.34",
"@types/uuid": "^9.0.8",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"typescript": "^5.7.2"
}
}