-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.14 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.14 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
{
"name": "mark-cms",
"private": true,
"version": "0.0.1",
"description": "A local-first Markdown CMS built with Tauri and React",
"license": "MIT",
"author": "SasaTech",
"keywords": [
"cms",
"markdown",
"tauri",
"desktop",
"content-management"
],
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"lint": "biome check .",
"lint:fix": "biome check --write",
"format": "biome format --write ."
},
"dependencies": {
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2",
"@tiptap/extension-link": "^2",
"@tiptap/extension-placeholder": "^2",
"@tiptap/extension-task-item": "^2",
"@tiptap/extension-task-list": "^2",
"@tiptap/extension-underline": "^2",
"@tiptap/react": "^2",
"@tiptap/starter-kit": "^2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router-dom": "^7",
"tiptap-markdown": "^0.8"
},
"devDependencies": {
"@biomejs/biome": "^2.4.0",
"@tauri-apps/cli": "^2",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"typescript": "~5.8.3",
"vite": "^7.0.4"
}
}