-
-
Notifications
You must be signed in to change notification settings - Fork 92
/
package.json
63 lines (63 loc) · 1.65 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
{
"name": "yandex-music-app",
"version": "1.8.1",
"author": "juvirez",
"description": "just webview for yandex music with native features",
"homepage": "https://yandex-music.juvs.dev",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/juvirez/yandex-music-app.git"
},
"main": "src/main/index.js",
"scripts": {
"prestart": "vite build",
"start": "electron .",
"prebuild": "vite build",
"build": "electron-builder",
"publish": "electron-builder -p always",
"postinstall": "electron-builder install-app-deps",
"watch": "vite build --watch"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.2.1",
"electron": "^19.0.3",
"electron-builder": "^23.6.0",
"electron-notarize": "^1.1.1",
"node-gyp": "^9.3.1",
"vite": "^4.3.3",
"vite-plugin-electron-renderer": "^0.14.1"
},
"dependencies": {
"discord-rpc": "^4.0.1",
"electron-google-analytics": "^1.0.0",
"electron-media-service": "juvirez/electron-media-service",
"electron-store": "^8.0.1",
"electron-updater": "^4.6.1",
"node-addon-api": "^3.0.0",
"node-fetch": "^2.6.7",
"vue": "^3.2.47"
},
"build": {
"productName": "Yandex Music Unofficial",
"appId": "dev.juvs.yandex-music",
"afterSign": "./notarize.js",
"mac": {
"category": "public.app-category.music",
"target": {
"target": "default",
"arch": [
"x64",
"arm64"
]
},
"icon": "static/icon.icns",
"publish": "github"
},
"extraResources": [
"static/tray*.png",
"static/touchbar/*.png",
"static/default_cover_*.png"
]
}
}