-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
123 lines (123 loc) · 3.73 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
{
"name": "flast-chromium",
"description": "Cross-platform browser based on Chromium (Electron).",
"version": "1.0.0-alpha.34",
"packageManager": "[email protected]",
"volta": {
"node": "18.15.0",
"yarn": "3.5.0"
},
"license": "GPL-3.0-only",
"author": {
"name": "Aoichaan0513",
"email": "[email protected]",
"url": "https://aoichaan0513.jp"
},
"keywords": [
"typescript",
"chromium",
"electron",
"browser",
"react",
"styled-components"
],
"repository": {
"type": "git",
"url": "git+https://github.com/FascodeNet/flast_chromium.git"
},
"main": "build/main.js",
"scripts": {
"predev": "rimraf build",
"dev": "run-p 'dev:*'",
"dev:electron": "wait-on ./build/browser/app.html && cross-env NODE_ENV=\"development\" electron .",
"dev:tsc": "tsc -w -p tsconfig.main.json",
"dev:webpack": "webpack --watch",
"start": "electron .",
"build": "npm run build:main && npm run build:renderer",
"build:main": "webpack --config webpack.config.main.ts --progress",
"build:renderer": "webpack --config webpack.config.renderer.ts --progress",
"compile:win32": "electron-builder -w",
"compile:darwin": "electron-builder -m --universal",
"compile:darwin:intel": "electron-builder -m --x64",
"compile:darwin:arm": "electron-builder -m --arm64",
"compile:linux": "electron-builder -l",
"ci-compile:win32": "electron-builder -w -p always",
"ci-compile:darwin": "electron-builder -m --universal -p always",
"ci-compile:darwin:intel": "electron-builder -m --x64 -p always",
"ci-compile:darwin:arm": "electron-builder -m --arm64 -p always",
"ci-compile:linux": "electron-builder -l -p always"
},
"dependencies": {
"@cliqz/adblocker-electron": "1.26.5",
"@emotion/react": "11.10.6",
"@emotion/styled": "11.10.6",
"@mui/icons-material": "5.11.11",
"@mui/lab": "5.0.0-alpha.124",
"@mui/material": "5.11.15",
"@seald-io/nedb": "4.0.0",
"animejs": "3.2.1",
"clsx": "1.1.1",
"color": "4.2.1",
"date-fns": "2.29.3",
"deepmerge": "4.3.1",
"electron-chrome-extensions-production": "3.14.0",
"file-type": "17.1.6",
"filesize": "9.0.11",
"format-number": "3.0.0",
"icojs": "0.17.0",
"jszip": "3.10.1",
"nanoid": "3.3.1",
"node-fetch": "3.2.10",
"platform": "1.3.6",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-helmet": "6.1.0",
"react-router-dom": "6.3.0",
"react-string-replace": "1.1.0",
"react-windows-controls": "1.1.1",
"styled-components": "5.3.9"
},
"devDependencies": {
"@electron/remote": "2.0.9",
"@faker-js/faker": "7.4.0",
"@types/animejs": "3.1.5",
"@types/chrome": "0.0.193",
"@types/color": "3.0.3",
"@types/filesize": "5.0.0",
"@types/format-number": "3.0.0",
"@types/mini-css-extract-plugin": "2.5.1",
"@types/node": "18.7.4",
"@types/platform": "1.3.4",
"@types/react": "17.0.41",
"@types/react-dom": "17.0.14",
"@types/react-helmet": "6.1.5",
"@types/styled-components": "5.1.26",
"cross-env": "7.0.3",
"css-loader": "6.7.1",
"electron": "23.2.1",
"electron-builder": "23.6.0",
"html-webpack-plugin": "5.5.0",
"mini-css-extract-plugin": "2.6.1",
"npm-run-all": "4.1.5",
"rimraf": "3.0.2",
"ts-loader": "9.4.2",
"ts-node": "10.9.1",
"tslint": "6.1.3",
"typescript": "4.9.5",
"wait-on": "6.0.1",
"webpack": "5.77.0",
"webpack-cli": "5.0.1"
},
"resolutions": {
"file-type": "17.1.6",
"follow-redirects": "1.14.8",
"http-cache-semantics": "4.1.1",
"jpeg-js": "0.4.4",
"json5": "2.2.3",
"minimist": "1.2.6",
"plist": "3.0.5",
"terser": "5.14.2",
"underscore": "1.13.1",
"yargs-parser": "21.0.0"
}
}