-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.2 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
{
"name": "cdp-auth",
"version": "0.0.3",
"description": "CEF Client (Chrome/Chromium) CDP authentication automation tool for mRemoteNG",
"main": "executable.js",
"scripts": {
"start": "node ./dist/executable.js",
"tsbuild": "tsc --build --clean && tsc --build",
"esbuild": "esbuild ./source/executable.ts --bundle --platform=node --outfile=./sea/executable.js",
"sea-build": "node ./dist/builder.js",
"sea-build-full": "npm run tsbuild && npm run esbuild && npm run sea-build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"scriptsComments": {
"start": "Run cdp-auth with arguments (recommended for debugging)",
"tsbuild": "Clean build typescript to javascript",
"esbuild": "Create a commonjs version of the app to be built into a SEA",
"sea-build": "Executes the builder script",
"sea-build-full": "Run all necessary build steps"
},
"author": "supermarsx",
"license": "MIT",
"dependencies": {
"chrome-remote-interface": "^0.33.0",
"ffi-napi": "^4.0.3",
"node-gyp": "^9.4.0",
"typescript": "^5.1.6"
},
"type": "module",
"devDependencies": {
"@types/node": "^20.4.9",
"esbuild": "^0.19.0",
"eslint": "^8.48.0"
}
}