forked from juvirez/yandex-music-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.69 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
{
"name": "yandex-music-app",
"version": "1.7.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": "webpack",
"start": "electron .",
"prebuild": "webpack",
"build": "electron-builder",
"publish": "electron-builder -p always",
"postinstall": "$(yarn bin)/electron-builder install-app-deps",
"watch": "webpack --watch --mode=development"
},
"devDependencies": {
"css-loader": "^3.6.0",
"electron": "^19.0.3",
"electron-builder": "^23.0.4",
"electron-notarize": "^1.1.1",
"vue-loader": "^15.9.2",
"vue-style-loader": "^4.1.3",
"vue-template-compiler": "^2.6.14",
"webpack": "^5.73.0",
"webpack-cli": "^4.9.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": "^2.6.14"
},
"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"
]
}
}