forked from BrowserBox/BrowserBox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.53 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
{
"name": "browserbox.club",
"version": "3.9.1",
"description": "Remote isolated browser platform by Dosyago",
"main": "./dist/BrowserBox.js",
"type": "module",
"module": "./src/server.js",
"bin": {
"vf": "./dist/BrowserBox.js"
},
"scripts": {
"test": "(npm run stop || :) && pm2 start ./scripts/run-test.sh",
"stop": "pm2 delete run-test",
"devtest": "bash ./scripts/devtest.sh",
"dev": "node-dev --inspect=127.0.0.1:8111 ./src/index.js",
"start": "bash ./scripts/dstart.sh",
"docker_start": "bash ./scripts/docker_start.sh",
"preinstall": "bash ./scripts/setup_machine.sh",
"postinstall": "bash ./scripts/postinstall.sh",
"bundle": "./scripts/make_bundle.sh",
"clean": "./scripts/clean.sh",
"lint": "./scripts/gglint.sh",
"tsc-server": "tsc --types node --target ES2020 --checkJs --allowJs --outFile typetests/server.js --module System ./src/server.js ./src/decs.d.ts",
"tsc-inject": "tsc --target ES2020 --checkJs --allowJs --outFile typetests/inject.js --module System ./src/zombie-lord/injections/**/*.js ./src/decs.d.ts",
"tsc-public": "tsc --target ES2020 --checkJs --allowJs --outFile typetests/inject.js --module System ./src/public/*.js ./src/decs.d.ts",
"tsc-check": "./scripts/tsc-check.sh",
"check": "rm -f ./src/public/*bundle*.js && ( npm run lint || : ) && npm run tsc-check",
"pack": "npx webpack ./src/server.js --config ./config/webpack.config.cjs",
"package": "npx pkg --compress Gzip .",
"build": "npm run pack && npm run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crisdosyago/BrowserBox.git"
},
"keywords": [
"remote-browser",
"remote-isolated-browser",
"rbi",
"cbii",
"secure-document-viewer",
"browser",
"headless",
"automation",
"chrome",
"viewfinder",
"browsergap",
"remoteview",
"chrome controller",
"secure",
"web-proxy"
],
"pkg": {
"scripts": "dist/*.js",
"assets": "src/**/*",
"outputPath": "build/"
},
"author": "@dosy",
"license": "Polyform Noncommercial 1.0",
"bugs": {
"url": "https://github.com/crisdosyago/BrowserBox/discussions"
},
"homepage": "https://gitlab.com/crisdosyago/BrowserBox#readme",
"dependencies": {
"body-parser": "latest",
"brutalist-web": "^2.3.0",
"cookie-parser": "latest",
"csurf": "latest",
"esm": "latest",
"express": "latest",
"express-rate-limit": "latest",
"helmet": "latest",
"multer": "latest",
"node-fetch": "latest",
"ws": "^7.4.6"
},
"devDependencies": {
"@babel/cli": "latest",
"@babel/core": "latest",
"@babel/plugin-external-helpers": "latest",
"@babel/plugin-transform-runtime": "latest",
"@babel/polyfill": "latest",
"@babel/preset-env": "latest",
"@babel/runtime": "latest",
"@rollup/plugin-babel": "latest",
"@rollup/plugin-commonjs": "latest",
"@rollup/plugin-node-resolve": "latest",
"@types/body-parser": "latest",
"@types/cookie-parser": "latest",
"@types/esm": "latest",
"@types/form-data": "latest",
"@types/is-docker": "latest",
"@types/multer": "latest",
"@types/node-fetch": "latest",
"@types/ws": "latest",
"babel-plugin-external-helpers": "latest",
"eslint": "latest",
"node-dev": "latest",
"node-loader": "latest",
"pkg": "latest",
"rollup": "latest",
"rollup-plugin-babel": "latest",
"rollup-plugin-commonjs": "latest",
"typescript": "latest",
"webpack": "latest",
"webpack-cli": "latest",
"whatwg-fetch": "latest"
}
}