-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.91 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
{
"private": true,
"name": "music-downloader",
"version": "1.0.3",
"description": "一个可播放及下载音乐的工具",
"main": "electron/main.js",
"author": "ddd",
"license": "MIT",
"build": {
"appId": "com.music-downloader.desktop",
"productName": "Music Downloader",
"directories": {
"output": "dist-release"
},
"win": {
"icon": "public/icons/win/icon.ico",
"target": [
"portable"
]
},
"mac": {
"icon": "public/icons/mac/icon.icns",
"target": [
"dmg"
]
}
},
"scripts": {
"appdev": "electron .",
"appbuild:mac": "vite build && electron-builder -m",
"appbuild:win": "vite build && electron-builder -w",
"apppack": "vite build && electron-builder --dir",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"format": "prettier --write src/"
},
"dependencies": {
"@kangc/v-md-editor": "^2.3.15",
"@vueuse/core": "^10.1.2",
"dayjs": "^1.11.8",
"electron-store": "^8.1.0",
"highlight.js": "^11.8.0",
"pinia": "^2.0.36",
"sass": "^1.63.3",
"vue": "^3.3.2",
"vue-router": "^4.2.0",
"vue3-audio-player": "^1.0.7"
},
"devDependencies": {
"@electron-internal/eslint-config": "^1.0.1",
"@rushstack/eslint-patch": "^1.2.0",
"@vicons/ionicons5": "^0.12.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/eslint-config-prettier": "^7.1.0",
"electron": "^25.0.0",
"electron-builder": "^23.6.0",
"electron-devtools-installer": "^3.2.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.11.0",
"naive-ui": "^2.34.4",
"prettier": "^2.8.8",
"vfonts": "^0.0.3",
"vite": "^4.3.5",
"vite-plugin-electron": "^0.11.2"
}
}