-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.54 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.54 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
{
"name": "sharp-tune",
"version": "1.0.3",
"Tag version": "v1.0.3",
"description": "Lightweight Cross-platform music player build upon the node using the electron framework.",
"main": "main.js",
"repository": "https://github.com/MD-AZMAL/Sharp-Tune",
"dependencies": {
"electron-is-dev": "^0.3.0",
"electron-log": "^2.2.15",
"electron-updater": "^2.21.10",
"musicmetadata": "^2.0.5"
},
"devDependencies": {
"electron": "^2.0.2",
"electron-builder": "^20.14.7"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"pack": "build --dir",
"dist": "build",
"gh-publish": "build --win -p always",
"gh-publish-linux": "build --linux -p always"
},
"build": {
"appId": "com.sharp-tune.www",
"productName": "Sharp Tune",
"publish": [
{
"provider": "github",
"repo": "Sharp-Tune",
"owner": "MD-AZMAL",
"vPrefixedTagName": "true",
"releaseType": "release"
}
],
"dmg": {
"contents": [
{
"x": 100,
"y": 150
},
{
"x": 250,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"maintainer": "Md Azmal <azmalmd12@gmail.com>",
"category": "Audio",
"icon": "./build/png",
"target": [
"AppImage",
"deb"
]
},
"win": {
"icon": "./build/ico/icon.ico"
}
},
"author": "Md Azmal <azmalmd12@gmail.com>",
"license": "MIT"
}