-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.65 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 3.65 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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@junbyeol/tiptap-editor",
"version": "1.0.13",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/types/index.d.ts",
"default": "./dist/index.cjs"
}
},
"./style.css": "./dist/style.css"
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"build:lib": "vite build --config vite.lib.config.ts",
"prepublishOnly": "pnpm build:lib",
"lint": "eslint .",
"preview": "vite preview",
"prettier": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,md,scss}\"",
"lint-staged": "lint-staged",
"prepare": "husky"
},
"peerDependencies": {
"@tiptap/core": "^3.26.0",
"@tiptap/pm": "^3.26.0",
"@tiptap/react": "^3.26.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"dependencies": {
"@floating-ui/react": "^0.27.19",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-popover": "^1.1.15",
"@remixicon/react": "^4.9.0",
"@tiptap/extension-blockquote": "^3.26.0",
"@tiptap/extension-bold": "^3.26.0",
"@tiptap/extension-bubble-menu": "^3.26.0",
"@tiptap/extension-code": "^3.26.0",
"@tiptap/extension-code-block-lowlight": "^3.26.0",
"@tiptap/extension-details": "^3.26.0",
"@tiptap/extension-document": "^3.26.0",
"@tiptap/extension-dropcursor": "^3.26.0",
"@tiptap/extension-file-handler": "^3.26.0",
"@tiptap/extension-gapcursor": "^3.26.0",
"@tiptap/extension-heading": "^3.26.0",
"@tiptap/extension-highlight": "^3.26.0",
"@tiptap/extension-horizontal-rule": "^3.26.0",
"@tiptap/extension-image": "^3.26.0",
"@tiptap/extension-italic": "^3.26.0",
"@tiptap/extension-link": "^3.26.0",
"@tiptap/extension-list": "^3.26.0",
"@tiptap/extension-paragraph": "^3.26.0",
"@tiptap/extension-strike": "^3.26.0",
"@tiptap/extension-subscript": "^3.26.0",
"@tiptap/extension-superscript": "^3.26.0",
"@tiptap/extension-table": "^3.26.0",
"@tiptap/extension-text": "^3.26.0",
"@tiptap/extension-text-align": "^3.26.0",
"@tiptap/extension-text-style": "^3.26.0",
"@tiptap/extension-typography": "^3.26.0",
"@tiptap/extension-underline": "^3.26.0",
"@tiptap/extension-youtube": "^3.26.0",
"@tiptap/extensions": "^3.26.0",
"@tiptap/starter-kit": "^3.26.0",
"clsx": "^2.1.1",
"diff": "^9.0.0",
"js-beautify": "^1.15.4",
"lowlight": "^3.3.0",
"react-hotkeys-hook": "^5.2.4",
"react-syntax-highlighter": "^16.1.1"
},
"devDependencies": {
"@base-ui/react": "^1.5.0",
"@eslint/js": "^9.39.1",
"@types/js-beautify": "^1.14.3",
"@types/node": "^25.3.5",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react-swc": "^4.2.2",
"class-variance-authority": "^0.7.1",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.3.3",
"prettier": "^3.8.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-toastify": "^11.0.5",
"sass-embedded": "^1.97.3",
"typescript": "~5.9.3",
"typescript-eslint": "^8.48.0",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --no-warn-ignored --max-warnings=0"
]
}
}