This repository was archived by the owner on Mar 31, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.05 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.05 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
{
"name": "macaron",
"version": "1.0.0",
"description": "一个简单而优雅的markdown编辑器,可用于Linux、macOS和Windows",
"author": "Vtuber Plan",
"license": "MIT",
"main": "dist-electron/main/index.js",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && electron-builder",
"build:dev": "vite build",
"preview": "vite preview",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"electron-store": "^8.1.0",
"highlight.js": "^11.9.0",
"i18next": "^23.7.16",
"katex": "^0.16.9",
"marked": "^11.1.1",
"marked-gfm-heading-id": "^3.1.3",
"marked-highlight": "^2.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.0.1",
"zustand": "^4.4.7"
},
"devDependencies": {
"@types/katex": "^0.16.7",
"@types/node": "^20.11.5",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.16",
"electron": "^28.3.3",
"electron-builder": "^24.9.1",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.4.33",
"prettier": "^3.2.2",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"vite": "^5.0.11",
"vite-plugin-electron": "^0.28.2",
"vite-plugin-electron-renderer": "^0.14.5"
},
"build": {
"appId": "com.vtuberplan.macaron",
"productName": "Macaron",
"directories": {
"output": "release"
},
"files": [
"dist",
"dist-electron"
],
"win": {
"target": [
"nsis"
],
"icon": "resources/icons/icon.ico"
},
"mac": {
"target": [
"dmg"
],
"icon": "resources/icons/icon.icns",
"category": "public.app-category.productivity"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"icon": "resources/icons",
"category": "Office"
}
}
}