-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.51 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
{
"name": "YTMusic-Tray",
"version": "0.2.0",
"description": "A simple application to run Youtube Music within the windows tray or mac menubar",
"main": "index.js",
"scripts": {
"build": "npm run fixmenubar && tsc",
"fixmenubar": "cd ./node_modules/ && rm -rf menubar && git clone https://github.com/haydendonald/menubar && cd menubar && yarn install && yarn build",
"start": "electron .",
"dev": "tsc && npm run start",
"make": "npm run build && electron-builder -mwl"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haydendonald/YTM-tray.git"
},
"keywords": [
"youtube",
"music",
"tray",
"menubar",
"electron"
],
"author": {
"name": "Hayden Donald",
"email": "[email protected]"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/haydendonald/YTM-tray/issues"
},
"homepage": "https://github.com/haydendonald/YTM-tray#readme",
"dependencies": {
"auto-launch": "^5.0.6",
"menubar": "^9.5.1"
},
"devDependencies": {
"@types/auto-launch": "^5.0.5",
"@types/electron-positioner": "^4.1.4",
"@types/node": "^20.6.3",
"electron": "^32.2.0",
"electron-builder": "^25.1.8",
"typescript": "^5.2.2"
},
"build": {
"appId": "com.haydendonald.ytmusic-tray",
"mac": {
"category": "public.app-category.music"
},
"linux": {
"target": [
"AppImage",
"deb"
]
},
"win": {
"target": "NSIS",
"icon": "build/icon.ico"
}
}
}