-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.19 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
{
"name": "fileflix",
"version": "1.0.0",
"description": "Turn any USB storage device into an offline streaming service",
"main": "main.js",
"build": {
"appId": "com.fileflix.app",
"productName": "FileFlix",
"directories": {
"output": "dist"
},
"files": [
"main.js",
"preload.js",
"renderer.js",
"index.html",
"style.css",
"img/**/*",
"package.json",
"LICENSE.md"
],
"win": {
"target": ["nsis", "portable"],
"icon": "img/icon.ico"
},
"linux": {
"target": "AppImage",
"icon": "img"
}
},
"scripts": {
"start": "electron .",
"build": "electron-builder",
"build:win": "electron-builder --win",
"build:linux": "electron-builder --linux"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tyson-Shannon/FileFlix.git"
},
"keywords": [],
"author": "Tyson Shannon",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/Tyson-Shannon/FileFlix/issues"
},
"homepage": "https://github.com/Tyson-Shannon/FileFlix#readme",
"devDependencies": {
"electron": "^41.3.0",
"electron-builder": "^26.8.1"
}
}