-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
80 lines (80 loc) · 3.02 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
{
"name": "rhyolite",
"version": "0.1.5",
"description": "A simple text editor written in Tauri, inspired by Obsidian.",
"type": "module",
"author": {
"name": "Rhyolite Team"
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch",
"tauri": "tauri"
},
"license": "Apache-2.0",
"dependencies": {
"@tauri-apps/api": "2.2.0",
"@tauri-apps/plugin-opener": "2.2.5",
"@tiptap/core": "2.11.5",
"@tiptap/extension-blockquote": "2.11.5",
"@tiptap/extension-bold": "2.11.5",
"@tiptap/extension-bullet-list": "2.11.5",
"@tiptap/extension-character-count": "2.11.5",
"@tiptap/extension-code": "2.11.5",
"@tiptap/extension-code-block": "2.11.5",
"@tiptap/extension-code-block-lowlight": "2.11.5",
"@tiptap/extension-color": "2.11.5",
"@tiptap/extension-document": "2.11.5",
"@tiptap/extension-font-family": "2.11.5",
"@tiptap/extension-gapcursor": "2.11.5",
"@tiptap/extension-heading": "2.11.5",
"@tiptap/extension-highlight": "2.11.5",
"@tiptap/extension-horizontal-rule": "2.11.5",
"@tiptap/extension-image": "2.11.5",
"@tiptap/extension-italic": "2.11.5",
"@tiptap/extension-link": "2.11.5",
"@tiptap/extension-list-item": "2.11.5",
"@tiptap/extension-ordered-list": "2.11.5",
"@tiptap/extension-paragraph": "2.11.5",
"@tiptap/extension-table": "2.11.5",
"@tiptap/extension-table-cell": "2.11.5",
"@tiptap/extension-table-header": "2.11.5",
"@tiptap/extension-table-row": "2.11.5",
"@tiptap/extension-task-item": "2.11.5",
"@tiptap/extension-task-list": "2.11.5",
"@tiptap/extension-text": "2.11.5",
"@tiptap/extension-text-align": "2.11.5",
"@tiptap/extension-text-style": "2.11.5",
"@tiptap/extension-typography": "2.11.5",
"@tiptap/extension-underline": "2.11.5",
"@tiptap/extension-youtube": "2.11.5",
"@tiptap/pm": "2.11.5",
"@tiptap/starter-kit": "2.11.5",
"flowbite-typography": "1.0.5",
"lowlight": "3.3.0",
"lucide-svelte": "0.475.0",
"svelte-tiptap": "2.1.0",
"uuid": "11.0.5"
},
"devDependencies": {
"@sveltejs/adapter-static": "3.0.8",
"@sveltejs/kit": "2.17.2",
"@sveltejs/vite-plugin-svelte": "5.0.3",
"@tauri-apps/cli": "2.2.7",
"autoprefixer": "10.4.20",
"flowbite": "3.1.2",
"flowbite-svelte": "0.47.4",
"flowbite-svelte-icons": "2.0.2",
"postcss": "8.5.2",
"prettier": "3.5.1",
"prettier-plugin-svelte": "3.3.3",
"svelte": "5.20.1",
"svelte-check": "4.1.4",
"tailwindcss": "3.3.3",
"typescript": "5.7.3",
"vite": "6.1.0"
}
}