-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.75 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
{
"name": "asciidoc-wysiwyg-editor",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"@codemirror/autocomplete": "^6.20.0",
"@codemirror/commands": "^6.10.0",
"@codemirror/lang-cpp": "^6.0.3",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-go": "^6.0.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-java": "^6.0.2",
"@codemirror/lang-javascript": "^6.2.4",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-rust": "^6.0.2",
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/lang-xml": "^6.1.0",
"@codemirror/language": "^6.11.3",
"@codemirror/search": "^6.5.11",
"@codemirror/state": "^6.5.2",
"@codemirror/view": "^6.39.4",
"@lezer/highlight": "^1.2.3",
"@tiptap/core": "^2.10.3",
"@tiptap/extension-bubble-menu": "^2.27.1",
"@tiptap/extension-color": "^2.10.3",
"@tiptap/extension-highlight": "^2.10.3",
"@tiptap/extension-image": "^2.10.3",
"@tiptap/extension-link": "^2.10.3",
"@tiptap/extension-placeholder": "^2.10.3",
"@tiptap/extension-table": "^2.10.3",
"@tiptap/extension-table-cell": "^2.10.3",
"@tiptap/extension-table-header": "^2.10.3",
"@tiptap/extension-table-row": "^2.10.3",
"@tiptap/extension-task-item": "^2.27.1",
"@tiptap/extension-task-list": "^2.27.1",
"@tiptap/extension-text-style": "^2.10.3",
"@tiptap/extension-underline": "^2.10.3",
"@tiptap/react": "^2.10.3",
"@tiptap/starter-kit": "^2.10.3",
"@tiptap/suggestion": "^2.27.1",
"@types/dompurify": "^3.0.5",
"@types/file-saver": "^2.0.7",
"@types/turndown": "^5.0.6",
"asciidoctor": "^3.0.4",
"dompurify": "^3.3.1",
"emoji-picker-react": "^4.16.1",
"file-saver": "^2.0.5",
"highlight.js": "^11.11.1",
"idb-keyval": "^6.2.2",
"jszip": "^3.10.1",
"katex": "^0.16.27",
"lucide-react": "^0.561.0",
"marked": "^17.0.1",
"mermaid": "^11.12.2",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"tippy.js": "^6.3.7",
"turndown": "^7.2.2",
"zustand": "^5.0.9"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@types/node": "^22.14.0",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.0.0",
"gh-pages": "^6.3.0",
"jsdom": "^27.3.0",
"typescript": "~5.8.2",
"vite": "^6.2.0",
"vitest": "^4.0.15"
}
}