-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.7 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.7 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
88
{
"name": "pourdown",
"private": true,
"version": "0.5.0",
"type": "module",
"scripts": {
"dev": "vite",
"lint": "tsc --noEmit && eslint .",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest run",
"tauri": "tauri",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-dialog": "^2.0.0",
"@tauri-apps/plugin-fs": "^2.0.0",
"@tauri-apps/plugin-opener": "^2.0.0",
"@tauri-apps/plugin-os": "^2.3.2",
"@tauri-apps/plugin-process": "^2.0.0",
"@tauri-apps/plugin-updater": "^2.0.0",
"@tiptap/core": "^2.27.2",
"@tiptap/extension-code-block-lowlight": "^2.1.13",
"@tiptap/extension-image": "^2.27.2",
"@tiptap/extension-link": "^2.27.2",
"@tiptap/extension-placeholder": "^2.1.13",
"@tiptap/extension-table": "^2.27.2",
"@tiptap/extension-table-cell": "^2.27.2",
"@tiptap/extension-table-header": "^2.27.2",
"@tiptap/extension-table-row": "^2.27.2",
"@tiptap/extension-task-item": "^2.27.2",
"@tiptap/extension-task-list": "^2.27.2",
"@tiptap/extension-typography": "^2.1.13",
"@tiptap/pm": "^2.27.2",
"@tiptap/react": "^2.1.13",
"@tiptap/starter-kit": "^2.1.13",
"@types/markdown-it": "^14.1.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"dompurify": "^3.4.11",
"i18next": "^25.8.5",
"katex": "^0.16.28",
"lowlight": "^3.1.0",
"lucide-react": "^0.303.0",
"markdown-it": "^14.3.0",
"markdown-it-deflist": "3.0.1",
"markdown-it-emoji": "3.0.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-mark": "4.0.0",
"markdown-it-sub": "2.0.0",
"markdown-it-sup": "2.0.0",
"mermaid": "^10.9.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^16.5.4",
"tailwind-merge": "^2.2.0",
"tauri-controls": "^0.4.0",
"tiptap-markdown": "^0.8.9",
"zustand": "^4.4.7"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/typography": "^0.5.10",
"@tauri-apps/cli": "^2.0.0",
"@types/katex": "^0.16.8",
"@types/node": "^26.1.2",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.16",
"eslint": "^10.6.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^17.7.0",
"jsdom": "^29.1.1",
"postcss": "^8.4.32",
"tailwindcss": "^3.4.0",
"terser": "^5.46.1",
"typescript": "^5.3.3",
"typescript-eslint": "^8.62.1",
"vite": "^5.0.8",
"vitepress": "^1.6.4",
"vitest": "^2.1.9"
}
}