-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.06 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
{
"name": "bitchute-desktop",
"version": "0.1.0",
"description": "Unofficial BitChute desktop application.",
"main": "index.js",
"scripts": {
"start": "electron .",
"build": "babel src --out-dir ./public/js",
"watch": "babel src --watch --out-dir ./public/js",
"build-native": "npm run build && node copy-build-files.js && cd temp && npm install --production && cd .. && electron-builder --dir",
"pack-native": "npm run build && node copy-build-files.js && cd temp && npm install --production && cd .. && electron-builder",
"publish-native": "npm run build && node copy-build-files.js && cd temp && npm install --production && cd .. && electron-builder --publish always"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rBurgett/bitchute-desktop.git"
},
"author": "Ryan Burgett <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/rBurgett/bitchute-desktop/issues"
},
"homepage": "https://github.com/rBurgett/bitchute-desktop#readme",
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-react": "^6.24.1",
"co": "^4.6.0",
"electron": "^2.0.7",
"electron-builder": "^20.28.1",
"eslint": "^5.3.0",
"eslint-plugin-react": "^7.10.0",
"font-awesome": "^4.7.0",
"rmrf-promise": "^1.1.0"
},
"dependencies": {
"electron-context-menu": "^0.10.0",
"electron-is-dev": "^0.3.0",
"electron-updater": "^3.1.1",
"fs-extra-promise": "^1.0.1",
"jquery": "^3.3.1",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"nedb-promises": "^3.0.1",
"prop-types": "^15.6.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"rss-parser": "^3.4.2",
"superagent": "^3.8.3",
"sweetalert2": "^7.26.11",
"uuid": "^3.3.2"
},
"build": {
"electronVersion": "1.7.15",
"appId": "com.ryanburgett.bitchute-desktop",
"productName": "BitChute Desktop",
"copyright": "Copyright © 2018 Ryan Burgett",
"directories": {
"app": "temp",
"output": "dist"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"icon": "./public/images/favicon.ico",
"publish": {
"provider": "github",
"releaseType": "draft"
}
},
"mac": {
"target": [
"dmg",
"zip"
],
"category": "public.app-category.utilities",
"icon": "./public/images/bitchute.icns",
"publish": {
"provider": "github",
"releaseType": "draft"
}
},
"linux": {
"target": "appImage",
"icon": "./public/images/linux_icons/",
"synopsis": "Copyright © 2018 Ryan Burgett",
"description": "Copyright © 2018 Ryan Burgett",
"category": "Utility",
"desktop": {
"Name": "BitChute Desktop"
},
"publish": {
"provider": "github",
"releaseType": "draft"
}
}
}
}