-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.1 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
{
"name": "muse",
"version": "0.1.2",
"description": "Muse · Typora 式所见即所得 Markdown 编辑器(Shiki 高亮 + Milkdown 7)",
"main": "./out/main/index.js",
"author": "",
"license": "MIT",
"scripts": {
"predev": "node scripts/fix-dock-types.mjs",
"dev": "electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"typecheck": "vue-tsc --noEmit",
"test:agent": "node scripts/test-agent.mjs",
"test:e2e": "npm run build && node scripts/e2e-agent.mjs",
"build:mac": "electron-vite build && electron-builder --mac",
"build:win": "electron-vite build && electron-builder --win",
"build:linux": "electron-vite build && electron-builder --linux"
},
"dependencies": {
"@antdv-next/icons": "^1.1.1",
"@antdv-next/unocss": "^1.1.1",
"@antdv-next/x": "1.2.1-beta.1",
"@antdv-next/x-markdown": "^0.1.3",
"@antdv-next/x-sdk": "^0.0.3",
"@lucide/vue": "^1.30.0",
"@milkdown/core": "^7.22.0",
"@milkdown/ctx": "^7.22.0",
"@milkdown/plugin-clipboard": "^7.22.0",
"@milkdown/plugin-history": "^7.22.0",
"@milkdown/plugin-listener": "^7.22.0",
"@milkdown/plugin-trailing": "^7.22.0",
"@milkdown/preset-commonmark": "^7.22.0",
"@milkdown/preset-gfm": "^7.22.0",
"@milkdown/prose": "^7.22.0",
"@milkdown/theme-nord": "^7.22.0",
"@milkdown/transformer": "^7.22.0",
"@milkdown/utils": "^7.22.0",
"@milkdown/vue": "^7.22.0",
"antdv-next": "^1.5.0",
"antdv-style": "1.0.0-rc.1",
"shiki": "^4.4.2",
"unocss": "^66.7.5"
},
"devDependencies": {
"@antdv-next/auto-import-resolver": "^1.1.0",
"@types/node": "^22.10.0",
"@vitejs/plugin-vue": "^6.0.0",
"electron": "^43.0.0",
"electron-builder": "^26.0.0",
"electron-vite": "^5.0.0",
"typescript": "^5.7.0",
"unplugin-vue-components": "^32.1.0",
"vite": "^7.0.0",
"vue": "^3.5.0",
"vue-tsc": "^3.0.0"
},
"allowScripts": {
"electron@43.3.0": true,
"esbuild@0.25.12": true,
"esbuild@0.28.1": true,
"electron-winstaller@5.4.0": true,
"fsevents@2.3.3": true
}
}