forked from temporaryna/MixCloud-Play
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
85 lines (85 loc) · 1.68 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
76
77
78
79
80
81
82
83
84
85
{
"name": "mixcloud-play",
"productName": "Mixcloud Play",
"version": "0.21.0",
"description": "The Mixcloud desktop client",
"keywords": [
"music",
"osx",
"macOS",
"mixcloud",
"wrapper",
"media keys",
"notifications",
"electron"
],
"author": {
"name": "Codemotion Ltd."
},
"contributors": [
{
"name": "Mountain/\\Ash"
},
{
"name": "Mihail Melnic"
}
],
"repository": {
"type": "git",
"url": "[email protected]:mountainash/Mixcloud-Play.git"
},
"homepage": "https://github.com/mountainash/Mixcloud-Play",
"bugs": {
"url": "https://github.com/mountainash/Mixcloud-Play/issues"
},
"license": "UNLICENSED",
"scripts": {
"start": "electron .",
"start:debug": "ELECTRON_DEBUG=true npm run start",
"build": "electron-builder",
"build:dir": "electron-builder --mac --dir",
"build:debug": "ELECTRON_DEBUG=true npm run build:dir",
"publish": "electron-builder build --publish always"
},
"dependencies": {
"electron-context-menu": "3.6.1",
"electron-store": "8.2.0",
"electron-updater": "6.1.8",
"keytar": "7.9.0",
"notie": "4.3.1"
},
"devDependencies": {
"electron": "29.1.1",
"electron-builder": "24.13.3"
},
"build": {
"appId": "BSFV28T84F.com.mountainash.${name}",
"copyright": "Copyleft 2022",
"productName": "Mixcloud Play",
"forceCodeSigning": true,
"removePackageKeywords": false,
"mac": {
"category": "public.app-category.music",
"icon": "Mixcloud.icns",
"target": {
"target": "default",
"arch": [
"x64",
"arm64"
]
}
},
"publish": [
{
"provider": "github",
"owner": "mountainash",
"repo": "Mixcloud-Play"
}
]
},
"renovate": {
"extends": [
"config:base"
]
}
}