-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
75 lines (75 loc) · 2.47 KB
/
package.json
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
{
"name": "markditor",
"version": "1.0.0",
"main": "dist-electron/main/index.js",
"description": "A [mark]down e[ditor] that features in WYSIWYG mode.",
"author": "greyovo <[email protected]>",
"license": "MIT",
"private": true,
"debug": {
"env": {
"VITE_DEV_SERVER_URL": "http://127.0.0.1:7777/"
}
},
"scripts": {
"dev": "echo Please specify the backend with :electron or :tauri. E.g., 'dev:electron', 'dev:tauri'.",
"dev:electron": "vite --mode=electron",
"dev:before_tauri": "vite --mode=tauri --config vite.config.tauri.ts",
"dev:tauri": "cargo tauri dev",
"dev:tauri-args": "cargo tauri dev -- -- \"C:\\Users\\Grey\\Desktop\\my note.md\"",
"build:electron": "tsc && vite build --mode=electron && electron-builder",
"build:before_tauri": "tsc && vite build --mode=tauri --config vite.config.tauri.ts",
"build:tauri": "cargo tauri build",
"preview": "vite preview",
"pree2e": "vite build --mode=electron",
"e2e": "playwright test"
},
"dependencies": {
"@heroicons/react": "^2.1.1",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-context-menu": "^2.1.5",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-menubar": "^1.0.4",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toggle": "^1.0.3",
"@radix-ui/react-toggle-group": "^1.0.4",
"@radix-ui/themes": "^2.0.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"electron-updater": "^6.1.1",
"i18next": "^23.10.0",
"i18next-browser-languagedetector": "^7.2.0",
"i18next-http-backend": "^2.5.0",
"react-i18next": "^14.0.5",
"react-resizable-panels": "^1.0.9",
"sonner": "^1.4.0",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7",
"vscode-uri": "^3.0.8",
"zustand": "^4.4.7"
},
"devDependencies": {
"@playwright/test": "^1.37.1",
"@tauri-apps/api": "^1.5.3",
"@types/node": "^20.11.0",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.4",
"autoprefixer": "^10.4.16",
"electron": "^18.0.0",
"electron-builder": "^24.6.3",
"lucide-react": "^0.309.0",
"postcss": "^8.4.31",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.3.3",
"typescript": "^5.1.6",
"vditor": "github:greyovo/vditor",
"vite": "^4.4.9",
"vite-plugin-electron": "^0.15.5",
"vite-plugin-electron-renderer": "^0.14.5"
},
"engines": {
"node": "^14.18.0 || >=16.0.0"
}
}