-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (72 loc) · 1.77 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
{
"name": "hls-manifest-viewer",
"version": "1.0.0",
"description": "Viewer for HLS manifest",
"main": "app/main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Karthick-Somasundaresan/hls-manifest-viewer.git"
},
"keywords": [
"HLS",
"Manifest",
"Viewer"
],
"author": "Karthick Somasundaresan",
"license": "ISC",
"bugs": {
"url": "https://github.com/Karthick-Somasundaresan/hls-manifest-viewer/issues"
},
"homepage": "https://github.com/Karthick-Somasundaresan/hls-manifest-viewer#readme",
"build": {
"appId": "com.karthicks.hls-manifest-viewer",
"productName": "HLS Manifest Viewer",
"asar": true,
"mac": {
"category": "public.app-category.productivity",
"icon": "build/icon.icns",
"artifactName": "${productName}-${version}-${arch}.${ext}"
},
"dmg":{
"title":"${productName} ${version}",
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"target": ["nsis"],
"icon": "build/icon.ico"
},
"nsis": {
"installerIcon": "build/icon.ico",
"uninstallerIcon": "build/icon.ico",
"uninstallDisplayName": "HLS Manifest Viewer",
"license": "license.txt",
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"devDependencies": {
"electron": "^9.0.2",
"electron-builder": "^22.7.0"
},
"dependencies": {
"axios": "^0.19.2",
"url-parse": "^1.4.7"
}
}