-
-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
88 lines (88 loc) · 2.12 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
86
87
88
{
"name": "DuskPlayer",
"version": "7.0.0",
"homepage": "https://aveek-saha.github.io",
"description": "A minimal music player for your desktop",
"repository": {
"type": "git",
"url": "https://github.com/Aveek-Saha/MusicPlayer.git"
},
"main": "index.js",
"scripts": {
"build": "rollup -c && electron-builder",
"dev": "rollup -c -w",
"start": "sirv public",
"app": "electron .",
"app-dev": "concurrently \"npm:dev\" \"npm:app\"",
"format-check": "prettier --check \"{,!(node_modules|public)/**/}*.{js,svelte}\"",
"format": "prettier --write \"{,!(node_modules|public)/**/}*.{js,svelte}\""
},
"build": {
"publish": [
{
"provider": "github",
"owner": "aveek-saha",
"repo": "MusicPlayer"
}
],
"dmg": {
"contents": [
{
"x": 120,
"y": 220
},
{
"x": 400,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"mac": {
"icon": "build/icon.icns",
"target": "pkg"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Utility",
"maintainer": "Aveek <[email protected]>",
"icon": "build"
},
"win": {
"icon": "build/icon.ico"
}
},
"author": "Aveek Saha",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "12.0.0",
"@rollup/plugin-node-resolve": "^7.0.0",
"concurrently": "^5.3.0",
"electron": "^7.3.3",
"electron-builder": "^22.9.1",
"electron-reload": "^1.5.0",
"prettier": "^2.2.1",
"prettier-plugin-svelte": "^1.4.2",
"rollup": "^2.0.0",
"rollup-plugin-livereload": "^1.0.0",
"rollup-plugin-svelte": "^6.1.1",
"rollup-plugin-terser": "^7.0.2",
"sirv-cli": "^0.4.6",
"svelte": "^3.32.1"
},
"dependencies": {
"about-window": "^1.13.4",
"bootstrap": "^5.3.0-alpha3",
"chokidar": "^3.5.1",
"electron-is-dev": "^1.2.0",
"electron-json-storage": "^4.3.0",
"howler": "^2.2.1",
"jquery": "^3.5.1",
"music-metadata": "^7.13.4",
"popper.js": "^1.16.1"
}
}