-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
35 lines (35 loc) · 1.61 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
{
"name": "offlinebay",
"version": "2.0.0",
"description": "Offline version of The Pirate Bay",
"main": "app/main.js",
"scripts": {
"start": "electron .",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "node app/reset-db.js",
"dist-mac": "electron-packager . OfflineBay --overwrite --platform=darwin --arch=x64 --icon=app/img/icon.icns --app-bundle-id=com.m4heshd.offlinebay --prune=true --out=dist --app-copyright=\"Copyright (C) 2018 m4heshd\"",
"dist-win": "electron-packager . OfflineBay --overwrite --platform=win32 --arch=ia32 --icon=app/img/icon.ico --prune=true --out=dist --win32metadata.FileDescription=\"OfflineBay\" --win32metadata.ProductName=\"OfflineBay by m4heshd\" --app-copyright=\"Copyright (C) 2018 m4heshd\"",
"dist-linux-64": "electron-packager . OfflineBay --overwrite --platform=linux --arch=x64 --icon=app/img/icon.png --prune=true --out=dist --app-copyright=\"Copyright (C) 2018 m4heshd\"",
"dist-linux-32": "electron-packager . OfflineBay --overwrite --platform=linux --arch=ia32 --icon=app/img/icon.png --prune=true --out=dist --app-copyright=\"Copyright (C) 2018 m4heshd\""
},
"author": "m4heshd",
"license": "MIT",
"dependencies": {
"adm-zip": "0.4.9",
"bittorrent-dht": "8.2.0",
"bittorrent-tracker": "9.7.0",
"bootstrap": "4.0.0",
"jquery": "3.3.1",
"material-design-iconic-font": "2.2.0",
"moment": "2.22.1",
"nedb": "1.8.0",
"papaparse": "4.3.7",
"popper.js": "1.14.1",
"request": "2.85.0",
"rimraf": "2.6.2"
},
"devDependencies": {
"electron": "1.8.4",
"electron-packager": "12.1.0"
}
}