forked from wexond/browser-base
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
139 lines (139 loc) · 4.65 KB
/
package.json
File metadata and controls
139 lines (139 loc) · 4.65 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
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
132
133
134
135
136
137
138
139
{
"name": "flowr-desktop",
"version": "1.4.0",
"author": {
"email": "info@taktik.com",
"name": "Taktik"
},
"description": "A PC client for Flowr",
"keywords": [
"web-browser",
"material",
"electron",
"react",
"mobx",
"styled-components"
],
"main": "build/main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/taktik/flowr-desktop.git"
},
"scripts": {
"install-app-deps": "electron-builder install-app-deps",
"install-widevine": "node ./script/install-widevine.mjs",
"copy-header": "node ./script/copy-headers.mjs",
"setup": "npm install && npm run install-app-deps",
"setup-widevine": "npm run setup && npm run install-widevine && npm run copy-header",
"dev": "cross-env NODE_ENV='dev' webpack --config webpack.renderers.js && serve ./build -l 4444",
"build": "webpack --config webpack.main.js --env production && webpack --config webpack.renderers.js --env production",
"start": "cross-env ENV='dev' webpack --config webpack.main.js && electron . --inspect=127.0.0.1:3001",
"compile-win32": "electron-builder --config electron-builder.common.js -w",
"compile-darwin": "electron-builder --config electron-builder.common.js -m",
"compile-linux": "electron-builder --config electron-builder.common.js -l",
"cw": "npm run compile-win32",
"cm": "npm run compile-darwin",
"cl": "npm run compile-linux",
"compile-widevine-win32": "electron-builder --config electron-builder.widevine.js -w",
"compile-widevine-darwin": "electron-builder --config electron-builder.widevine.js -m",
"compile-widevine-linux": "electron-builder --config electron-builder.widevine.js -l",
"cww": "npm run compile-widevine-win32",
"cwm": "npm run compile-widevine-darwin",
"cwl": "npm run compile-widevine-linux",
"lint": "lint-staged",
"lint-fix": "prettier --write \"src/**/*.ts*\" && lint-staged"
},
"devDependencies": {
"@types/axios": "0.14.0",
"@types/chrome": "0.0.83",
"@types/deep-extend": "0.4.31",
"@types/ffmpeg-static": "3.0.0",
"@types/fs-extra": "7.0.0",
"@types/gsap": "1.20.2",
"@types/lodash": "4.14.132",
"@types/nedb": "1.8.7",
"@types/node": "^16.11.7",
"@types/react": "16.8.17",
"@types/react-dom": "16.8.4",
"@types/styled-components": "4.1.14",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"babel-loader": "8.2.3",
"clean-webpack-plugin": "4.0.0",
"concurrently": "4.1.0",
"copy-webpack-plugin": "10.2.4",
"cross-env": "5.2.0",
"css-loader": "6.7.1",
"electron": "40.1.0",
"electron-builder": "23.5.1",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-standard": "5.0.0",
"html-loader": "3.1.0",
"html-webpack-plugin": "5.5.0",
"husky": "8.0.1",
"lint-staged": "12.4.1",
"prettier": "1.17.0",
"serve": "14.1.2",
"style-loader": "3.3.1",
"terser": "3.17.0",
"terser-webpack-plugin": "5.3.1",
"ts-loader": "9.2.7",
"typescript": "4.6.4",
"typescript-plugin-styled-components": "2.0.0",
"webpack": "5.72.1",
"webpack-cli": "4.9.2",
"ws": "8.3.0"
},
"dependencies": {
"@cliqz/adblocker": "0.9.1",
"@electron/remote": "2.1.2",
"@fortawesome/fontawesome-svg-core": "1.2.21",
"@fortawesome/free-solid-svg-icons": "5.10.1",
"@fortawesome/react-fontawesome": "0.1.4",
"@taktik/buffers": "1.0.4",
"@taktik/flowr-common-js": "1.0.5",
"@taktik/fluent-ffmpeg": "2.1.5",
"@taktik/mux.js": "5.10.6",
"@taktik/ts-decryptor": "1.0.10",
"@taktik/udp-streamer": "1.0.9",
"axios": "0.27.2",
"check-disk-space": "3.4.0",
"crypto-random-string": "3.1.0",
"deep-extend": "0.6.0",
"electron-log": "3.0.5",
"electron-updater": "4.0.6",
"ffmpeg-static": "3.0.0",
"file-type": "11.0.0",
"fs-extra": "8.0.1",
"gsap": "2.1.2",
"icojs": "0.17.0",
"lodash": "4.17.11",
"mobx": "5.9.4",
"mobx-react": "5.4.3",
"moment": "2.24.0",
"nedb": "1.8.0",
"network-everywhere": "1.0.3",
"node-vibrant": "3.2.1-alpha.1",
"node-window-manager": "2.2.4",
"ozone-type": "6.0.0",
"pretty-bytes": "5.2.0",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-hook-form": "7.31.1",
"run-parallel": "1.1.9",
"simple-keyboard": "3.4.107",
"simple-keyboard-layouts": "3.1.123",
"styled-components": "4.2.0",
"tldts": "4.0.6",
"typescript-state-machine": "0.9.8"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}