single-file-cli 1.0.66 → 1.0.67
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.js +0 -0
- package/Dockerfile +0 -0
- package/LICENSE +0 -0
- package/README.MD +0 -0
- package/args.js +0 -0
- package/back-ends/common/scripts.js +0 -0
- package/back-ends/extensions/bypass-csp/index.js +0 -0
- package/back-ends/extensions/bypass-csp/manifest.json +0 -0
- package/back-ends/extensions/disable-web-security/index.js +0 -0
- package/back-ends/extensions/disable-web-security/manifest.json +0 -0
- package/back-ends/extensions/network-idle/bg.js +0 -0
- package/back-ends/extensions/network-idle/content.js +0 -0
- package/back-ends/extensions/network-idle/manifest.json +0 -0
- package/back-ends/extensions/signed/bypass_csp-0.0.3-an+fx.xpi +0 -0
- package/back-ends/extensions/signed/disable_web_security-0.0.3-an+fx.xpi +0 -0
- package/back-ends/extensions/signed/network_idle-0.0.2-an+fx.xpi +0 -0
- package/back-ends/jsdom.js +0 -0
- package/back-ends/playwright-chromium.js +0 -0
- package/back-ends/playwright-firefox.js +0 -0
- package/back-ends/playwright-webkit.js +0 -0
- package/back-ends/puppeteer-firefox.js +0 -0
- package/back-ends/puppeteer.js +0 -0
- package/back-ends/webdriver-chromium.js +172 -172
- package/back-ends/webdriver-gecko.js +0 -0
- package/lib/single-file-bootstrap.js +1 -1
- package/lib/single-file-frames.js +1 -1
- package/lib/single-file-hooks-frames.js +0 -0
- package/lib/single-file.js +1 -1
- package/package.json +40 -40
- package/rollup.config.dev.js +0 -0
- package/rollup.config.js +0 -0
- package/single-file-cli-api.js +0 -0
- package/single-file.bat +0 -0
package/package.json
CHANGED
|
@@ -1,41 +1,41 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "single-file-cli",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "SingleFile CLI",
|
|
5
|
-
"author": "Gildas Lormeau",
|
|
6
|
-
"license": "AGPL-3.0-or-later",
|
|
7
|
-
"main": "single-file-cli-api.js",
|
|
8
|
-
"bin": {
|
|
9
|
-
"single-file": "./single-file"
|
|
10
|
-
},
|
|
11
|
-
"scripts": {
|
|
12
|
-
"build": "./build-lib.sh",
|
|
13
|
-
"prepublishOnly": "./build-lib.sh"
|
|
14
|
-
},
|
|
15
|
-
"repository": {
|
|
16
|
-
"type": "git",
|
|
17
|
-
"url": "git+https://github.com/gildas-lormeau/single-file-cli.git"
|
|
18
|
-
},
|
|
19
|
-
"bugs": {
|
|
20
|
-
"url": "https://github.com/gildas-lormeau/single-file-cli/issues"
|
|
21
|
-
},
|
|
22
|
-
"homepage": "https://github.com/gildas-lormeau/single-file-cli#readme",
|
|
23
|
-
"dependencies": {
|
|
24
|
-
"file-url": "3.0.0",
|
|
25
|
-
"iconv-lite": "0.6.3",
|
|
26
|
-
"jsdom": "22.1.0",
|
|
27
|
-
"puppeteer-core": "21.1.0",
|
|
28
|
-
"selenium-webdriver": "4.11.1",
|
|
29
|
-
"single-file-core": "1.1.
|
|
30
|
-
"strong-data-uri": "1.0.6",
|
|
31
|
-
"yargs": "17.7.2"
|
|
32
|
-
},
|
|
33
|
-
"devDependencies": {
|
|
34
|
-
"@rollup/plugin-node-resolve": "15.0.1",
|
|
35
|
-
"rollup": "2.79.1",
|
|
36
|
-
"rollup-plugin-terser": "7.0.2"
|
|
37
|
-
},
|
|
38
|
-
"overrides": {
|
|
39
|
-
"terser": "^5.15.0"
|
|
40
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "single-file-cli",
|
|
3
|
+
"version": "1.0.67",
|
|
4
|
+
"description": "SingleFile CLI",
|
|
5
|
+
"author": "Gildas Lormeau",
|
|
6
|
+
"license": "AGPL-3.0-or-later",
|
|
7
|
+
"main": "single-file-cli-api.js",
|
|
8
|
+
"bin": {
|
|
9
|
+
"single-file": "./single-file"
|
|
10
|
+
},
|
|
11
|
+
"scripts": {
|
|
12
|
+
"build": "./build-lib.sh",
|
|
13
|
+
"prepublishOnly": "./build-lib.sh"
|
|
14
|
+
},
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git+https://github.com/gildas-lormeau/single-file-cli.git"
|
|
18
|
+
},
|
|
19
|
+
"bugs": {
|
|
20
|
+
"url": "https://github.com/gildas-lormeau/single-file-cli/issues"
|
|
21
|
+
},
|
|
22
|
+
"homepage": "https://github.com/gildas-lormeau/single-file-cli#readme",
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"file-url": "3.0.0",
|
|
25
|
+
"iconv-lite": "0.6.3",
|
|
26
|
+
"jsdom": "22.1.0",
|
|
27
|
+
"puppeteer-core": "21.1.0",
|
|
28
|
+
"selenium-webdriver": "4.11.1",
|
|
29
|
+
"single-file-core": "1.1.77",
|
|
30
|
+
"strong-data-uri": "1.0.6",
|
|
31
|
+
"yargs": "17.7.2"
|
|
32
|
+
},
|
|
33
|
+
"devDependencies": {
|
|
34
|
+
"@rollup/plugin-node-resolve": "15.0.1",
|
|
35
|
+
"rollup": "2.79.1",
|
|
36
|
+
"rollup-plugin-terser": "7.0.2"
|
|
37
|
+
},
|
|
38
|
+
"overrides": {
|
|
39
|
+
"terser": "^5.15.0"
|
|
40
|
+
}
|
|
41
41
|
}
|
package/rollup.config.dev.js
CHANGED
|
File without changes
|
package/rollup.config.js
CHANGED
|
File without changes
|
package/single-file-cli-api.js
CHANGED
|
File without changes
|
package/single-file.bat
CHANGED
|
File without changes
|