-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 968 Bytes
/
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
{
"name": "markdown-notepad",
"version": "0.0.0",
"main": "dist-electron/main/index.js",
"description": "A electron markdown notepad in Windows.",
"author": "Jimmy",
"license": "MIT",
"private": true,
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build && electron-builder"
},
"engines": {
"node": "^14.18.0 || >=16.0.0"
},
"dependencies": {
"cherry-markdown": "^0.8.9"
},
"devDependencies": {
"@vitejs/plugin-vue": "^3.2.0",
"electron": "^22.0.0",
"electron-builder": "^22.10.3",
"esbuild": "^0.16.7",
"sass": "^1.56.2",
"typescript": "^4.9.4",
"vite": "^3.2.5",
"vite-plugin-electron": "^0.10.4",
"vite-plugin-electron-renderer": "^0.11.3",
"vue": "^3.2.45",
"vue-tsc": "^1.0.12"
},
"debug": {
"env": {
"VITE_DEV_SERVER_URL": "http://127.0.0.1:3344"
}
},
"keywords": [
"electron",
"rollup",
"vite",
"vue3",
"vue"
]
}