-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
131 lines (131 loc) · 4.34 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "flixerr",
"version": "1.9.0",
"description": "A movie torrent streaming service.",
"main": "main.js",
"build": {
"appId": "com.flixerr.app",
"productName": "Flixerr",
"asar": false,
"directories": {
"app": ".",
"output": "./build",
"buildResources": "./"
},
"publish": {
"provider": "github"
},
"mac": {
"target": [
"zip"
],
"category": "public.app-category.entertainment",
"icon": "./assets/img/icon.icns"
},
"dmg": {
"artifactName": "${name}-${version}.${os}.installer.${ext}"
},
"win": {
"target": [
"nsis",
"appx"
],
"icon": "./assets/img/icon.ico"
},
"nsis": {
"deleteAppDataOnUninstall": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Flixerr",
"artifactName": "${name}-${version}.${os}.${ext}"
},
"appx": {
"applicationId": "CarlosSantos.Flixerr",
"identityName": "1661CarlosSantos.Flixerr",
"publisherDisplayName": "Carlos Santos",
"publisher": "CN=7A2BC485-9E2D-4207-AF2F-90FC34238C7D",
"displayName": "Flixerr"
},
"linux": {
"target": [
"AppImage"
],
"category": "video"
}
},
"scripts": {
"start": "npm run compile && electron .",
"init": "npm install && npm run rebuild && npm run compile",
"dev": "electron . -dev",
"format": "prettier --config ./.prettierrc --write ./assets/js ./assets/css",
"clean": "node clean.js",
"deep-clean": "node clean.js -- --deep",
"compile": "babel ./assets/js --out-dir dist/js",
"rebuild": "electron-rebuild",
"build": "npm run compile && electron-builder --dir",
"build-all": "npm run compile && electron-builder --dir -mwl",
"pack": "npm run compile && electron-builder",
"pack-all": "npm run pack -- -mwl",
"publish": "npm run clean && npm run format && npm run pack",
"publish-all": "npm run clean && npm run format && npm run pack-all"
},
"author": "Carlos Santos <[email protected]>",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"electron": "^9.4.4",
"electron-builder": "^21.2.0",
"electron-builder-squirrel-windows": "^22.8.1",
"electron-notarize": "^0.1.1",
"electron-rebuild": "^3.2.5",
"prettier": "^2.0.4"
},
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.0.20",
"accurate-interval": "^1.0.9",
"axios": "^0.19.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"castv2-client": "^1.2.0",
"charset-detector": "0.0.2",
"cheerio": "^1.0.0-rc.3",
"decompress": "^4.2.1",
"download": "^7.1.0",
"electron-json-storage": "^4.1.8",
"electron-titlebar": "0.0.3",
"electron-window-state": "^5.0.3",
"encoding": "^0.1.12",
"fast-average-color": "^5.2.1",
"ffmpeg": "0.0.4",
"firebase": "^7.19.1",
"franc-min": "^4.1.1",
"fs-extra": "^8.1.0",
"get-json": "^1.0.1",
"https-proxy-agent": "^2.2.4",
"langs": "^2.0.0",
"mdns": "^2.5.1",
"moment": "^2.27.0",
"movie-trailer": "^2.0.6",
"network-address": "^1.1.2",
"node-emoji": "^1.10.0",
"parse-torrent": "^9.1.4",
"parse-torrent-name": "^0.5.4",
"pluralize": "^8.0.0",
"puppeteer": "^2.1.1",
"randomcolor": "^0.6.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-lazy-load": "^3.0.13",
"react-reveal": "^1.2.2",
"react-textarea-autosize": "^8.2.0",
"react-transition-group": "^1.2.1",
"torrent-search-api": "^2.1.1",
"uniqid": "^4.1.1",
"username-generator": "^1.1.0",
"webtorrent": "^0.107.17",
"webtorrent-health": "^1.1.2"
}
}