-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.22 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.22 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
{
"name": "open-writer",
"version": "1.0.0",
"private": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint"
},
"dependencies": {
"@tiptap/extension-character-count": "^3.14.0",
"@tiptap/extension-color": "^3.22.2",
"@tiptap/extension-dropcursor": "^3.22.2",
"@tiptap/extension-font-family": "^3.22.2",
"@tiptap/extension-heading": "^3.22.2",
"@tiptap/extension-highlight": "^3.14.0",
"@tiptap/extension-horizontal-rule": "^3.22.2",
"@tiptap/extension-image": "^3.14.0",
"@tiptap/extension-link": "^3.14.0",
"@tiptap/extension-placeholder": "^3.14.0",
"@tiptap/extension-subscript": "^3.22.2",
"@tiptap/extension-superscript": "^3.22.2",
"@tiptap/extension-table": "^3.14.0",
"@tiptap/extension-table-cell": "^3.14.0",
"@tiptap/extension-table-header": "^3.14.0",
"@tiptap/extension-table-row": "^3.14.0",
"@tiptap/extension-task-item": "^3.14.0",
"@tiptap/extension-task-list": "^3.14.0",
"@tiptap/extension-text-align": "^3.22.2",
"@tiptap/extension-text-style": "^3.22.2",
"@tiptap/extension-typography": "^3.14.0",
"@tiptap/extension-underline": "^3.22.2",
"@tiptap/react": "^3.14.0",
"@tiptap/starter-kit": "^3.14.0",
"@tiptap/suggestion": "^3.14.0",
"@types/uuid": "^10.0.0",
"dexie": "^4.4.2",
"dexie-react-hooks": "^4.4.0",
"dictionary-en": "^4.0.0",
"dictionary-es": "^4.0.0",
"dictionary-pt": "^4.0.0",
"jszip": "^3.10.1",
"lucide-react": "^1.7.0",
"mammoth": "^1.12.0",
"next": "16.2.2",
"nspell": "^2.1.5",
"pretext": "^0.3.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"uuid": "^13.0.0"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.2",
"tailwindcss": "^4",
"typescript": "^5"
},
"license": "Apache-2.0",
"description": "OpenWriter is a local-first, WYSIWYG book editor for writing and publishing books.",
"author": "OpenWriter Contributors",
"keywords": [
"books",
"editor",
"nextjs",
"wysiwyg"
]
}