-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·73 lines (73 loc) · 1.84 KB
/
package.json
File metadata and controls
executable file
·73 lines (73 loc) · 1.84 KB
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
{
"name": "anthonym",
"version": "0.0.23",
"description": "An electron based Music player",
"main": "main.js",
"category": "Multimedia",
"homepage": "https://github.com/anthonym01/Anthonym",
"license": "ISC",
"bin": "AA01",
"icon": "build/icon.png",
"author": "Anthonym <samuelmatheson20@gmail.com>",
"repository": "https://github.com/anthonym01/Anthonym",
"keywords": [
"Electron",
"Audio",
"Player"
],
"scripts": {
"start": "electron main.js",
"postinstall": "electron-builder install-app-deps",
"build-linux-unpacked": "electron-builder --linux dir",
"build-linux-all": "electron-builder --linux deb appimage tar.xz tar.gz snap pacman",
"builder-win": "electron-builder --win --ia32 --x64",
"builder-wack_OS": "electron-builder --macos"
},
"build": {
"appId": "com.anthonym.music",
"icon": "build/icons/1024x1024.png",
"productName": "anthonym",
"copyright": "none",
"buildVersion": "1.0.0",
"remoteBuild": "true",
"asar": "true",
"win": {
"target": "nsis",
"icon": "build/icons/icon.ico"
},
"linux": {
"category": "Multimedia",
"icon": "build/icon.png"
},
"mac": {
"category": "music",
"icon": "build/icons/1024x1024.png"
},
"directories": {
"buildResources": "build"
},
"files": [
"Windows/**/*",
"node_modules/**/*",
"build/**/*",
"package.json",
"main.js"
]
},
"devDependencies": {
"asar": "^1.0.0",
"electron": "^18.1.0",
"electron-builder": "^22.14.13"
},
"dependencies": {
"electron-store": "^8.0.1",
"electron-window-state": "^5.0.3",
"ffmetadata": "^1.7.0",
"howler": "^2.2.3",
"music-metadata": "^7.12.2",
"node-id3": "^0.2.3",
"siriwave": "^2.2.3",
"thumbnail-js": "^0.1.5",
"wallpaper": "^4.4.1"
}
}