-
Notifications
You must be signed in to change notification settings - Fork 584
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.15 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.15 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
{
"name": "@hypr/tiptap",
"version": "0.0.0",
"private": true,
"license": "MIT",
"type": "module",
"exports": {
"./chat": "./src/chat/index.tsx",
"./editor": "./src/editor/index.tsx",
"./prompt": "./src/prompt/index.tsx",
"./shared": "./src/shared/index.ts",
"./styles.css": "./styles.css"
},
"scripts": {
"test": "vitest run --passWithNoTests"
},
"dependencies": {
"@floating-ui/dom": "^1.7.5",
"@hypr/ui": "workspace:^",
"@hypr/utils": "workspace:^",
"@remixicon/react": "^4.9.0",
"@tanstack/react-query": "^5.90.20",
"@tanstack/react-router": "^1.159.5",
"@tiptap/core": "3.20.1",
"@tiptap/extension-bubble-menu": "3.20.1",
"@tiptap/extension-file-handler": "3.20.1",
"@tiptap/extension-highlight": "3.20.1",
"@tiptap/extension-image": "3.20.1",
"@tiptap/extension-link": "3.20.1",
"@tiptap/extension-list-keymap": "3.20.1",
"@tiptap/extension-mention": "3.20.1",
"@tiptap/extension-placeholder": "3.20.1",
"@tiptap/extension-table": "3.20.1",
"@tiptap/extension-task-item": "3.20.1",
"@tiptap/extension-task-list": "3.20.1",
"@tiptap/extension-typography": "3.20.1",
"@tiptap/extension-underline": "3.20.1",
"@tiptap/markdown": "3.20.1",
"@tiptap/pm": "3.20.1",
"@tiptap/react": "3.20.1",
"@tiptap/starter-kit": "3.20.1",
"@tiptap/suggestion": "3.20.1",
"clsx": "^2.1.1",
"lucide-react": "^0.544.0",
"prosemirror-commands": "^1.7.1",
"prosemirror-model": "^1.25.4",
"prosemirror-state": "^1.4.4",
"requestidlecallback-polyfill": "^1.0.2",
"tlds": "^1.261.0",
"usehooks-ts": "^3.1.1",
"facehash": "^0.0.7"
},
"devDependencies": {
"@types/node": "^22.19.11",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"vitest": "^3.2.4"
},
"peerDependencies": {
"@codemirror/autocomplete": "^6.20.0",
"@codemirror/lang-jinja": "^6.0.0",
"@codemirror/lint": "^6.9.2",
"@codemirror/state": "^6.5.3",
"@codemirror/view": "^6.39.9",
"@uiw/react-codemirror": "^4.25.4",
"codemirror-readonly-ranges": "0.1.0-alpha.2",
"react": "^19.2.3",
"react-dom": "^19.2.3"
}
}