-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.61 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.61 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
74
75
{
"name": "fury",
"version": "0.1.7",
"description": "Media player",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"publish": "electron-builder -p always",
"postinstall": "node copyFFmpeg.js"
},
"repository": {
"type": "git",
"url": "https://github.com/naveen-devang/Fury.git"
},
"dependencies": {
"@electron/remote": "^2.1.3",
"electron-log": "^5.4.3",
"electron-store": "^11.0.2",
"electron-updater": "^6.8.3",
"ffmpeg-static": "^5.3.0",
"ffprobe-static": "^3.1.0",
"fluent-ffmpeg": "^2.1.3",
"music-metadata": "^11.12.3",
"srt-to-vtt": "^1.1.3",
"subtitle": "^4.2.2",
"webvtt-parser": "^2.2.0"
},
"devDependencies": {
"electron": "^41.3.0",
"electron-builder": "^26.8.1"
},
"build": {
"appId": "com.fury.mediaplayer",
"productName": "Fury",
"directories": {
"output": "dist"
},
"extraResources": [
{
"from": "ffmpeg-binaries/",
"to": "ffmpeg-binaries/",
"filter": [
"**/*"
]
}
],
"win": {
"target": [
"nsis"
],
"icon": "build/icon.ico"
},
"mac": {
"target": [
"dmg"
],
"icon": "build/icon.icns",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist"
},
"linux": {
"target": [
"AppImage"
],
"icon": "build/icon.png"
},
"publish": {
"provider": "github",
"private": false
}
}
}