-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.87 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.87 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
{
"name": "ink",
"private": true,
"version": "0.3.5",
"type": "module",
"description": "墨 · A minimal, elegant Markdown reader & light editor for macOS. Built with Tauri.",
"license": "MIT",
"author": "Linek & Forge",
"homepage": "https://github.com/LinekForge/ink",
"repository": {
"type": "git",
"url": "https://github.com/LinekForge/ink.git"
},
"bugs": "https://github.com/LinekForge/ink/issues",
"keywords": [
"markdown",
"editor",
"reader",
"tauri",
"macos",
"milkdown",
"wysiwyg"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest run",
"tauri": "tauri"
},
"dependencies": {
"@milkdown/core": "^7.20.0",
"@milkdown/plugin-clipboard": "^7.20.0",
"@milkdown/plugin-cursor": "^7.20.0",
"@milkdown/plugin-history": "^7.20.0",
"@milkdown/plugin-indent": "^7.20.0",
"@milkdown/plugin-listener": "^7.20.0",
"@milkdown/plugin-math": "7.5.9",
"@milkdown/plugin-prism": "^7.20.0",
"@milkdown/preset-commonmark": "^7.20.0",
"@milkdown/preset-gfm": "^7.20.0",
"@milkdown/prose": "^7.20.0",
"@milkdown/react": "^7.20.0",
"@milkdown/theme-nord": "^7.20.0",
"@milkdown/utils": "^7.20.0",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2.7.0",
"@tauri-apps/plugin-opener": "^2",
"katex": "0.16.45",
"mermaid": "11.14.0",
"node-diff3": "^3.2.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-resizable-panels": "^2.1.9",
"zustand": "^5.0.12"
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"autoprefixer": "^10.5.0",
"postcss": "^8.5.10",
"tailwindcss": "^3.4.19",
"typescript": "~5.8.3",
"vite": "^7.0.4",
"vitest": "^4.1.5"
}
}