-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.74 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
{
"name": "claude-md-editor",
"version": "0.1.0",
"description": "AI-powered Markdown editor built on Claude Code",
"main": "dist-electron/main.js",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"electron:dev": "vite",
"electron:build": "vite build && electron-builder",
"lint": "eslint . --ext ts,tsx"
},
"dependencies": {
"@codemirror/autocomplete": "^6.12.0",
"@codemirror/commands": "^6.3.0",
"@codemirror/lang-markdown": "^6.2.0",
"@codemirror/language": "^6.10.0",
"@codemirror/search": "^6.5.0",
"@codemirror/state": "^6.4.0",
"@codemirror/theme-one-dark": "^6.1.0",
"@codemirror/view": "^6.22.0",
"chokidar": "^3.6.0",
"highlight.js": "^11.9.0",
"katex": "^0.16.0",
"lodash.throttle": "^4.1.0",
"markdown-it": "^14.0.0",
"markdown-it-emoji": "^3.0.0",
"markdown-it-mark": "^4.0.0",
"markdown-it-sub": "^2.0.0",
"markdown-it-sup": "^2.0.0",
"mermaid": "^10.6.0",
"node-pty": "^1.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sanitize-html": "^2.11.0",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0",
"xterm-addon-web-links": "^0.9.0",
"zustand": "^4.5.0"
},
"devDependencies": {
"@types/lodash.throttle": "^4.1.0",
"@types/markdown-it": "^14.1.2",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/sanitize-html": "^2.11.0",
"@vitejs/plugin-react": "^4.2.0",
"autoprefixer": "^10.4.0",
"electron": "^28.0.0",
"electron-builder": "^24.0.0",
"postcss": "^8.4.0",
"tailwindcss": "^3.4.0",
"typescript": "^5.3.0",
"vite": "^5.0.0",
"vite-plugin-electron": "^0.28.0",
"vite-plugin-electron-renderer": "^0.14.0"
}
}