apify-client 2.22.2 → 2.22.3-beta.0
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/dist/bundle.js +1038 -782
- package/dist/bundle.js.map +1 -1
- package/package.json +112 -112
package/package.json
CHANGED
|
@@ -1,114 +1,114 @@
|
|
|
1
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
|
-
|
|
2
|
+
"name": "apify-client",
|
|
3
|
+
"version": "2.22.3-beta.0",
|
|
4
|
+
"description": "Apify API client for JavaScript",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.mjs",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"browser": "dist/bundle.js",
|
|
9
|
+
"unpkg": "dist/bundle.js",
|
|
10
|
+
"exports": {
|
|
11
|
+
"./package.json": "./package.json",
|
|
12
|
+
"./browser": "./dist/bundle.js",
|
|
13
|
+
".": {
|
|
14
|
+
"import": "./dist/index.mjs",
|
|
15
|
+
"require": "./dist/index.js",
|
|
16
|
+
"types": "./dist/index.d.ts",
|
|
17
|
+
"browser": "./dist/bundle.js"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"keywords": [
|
|
21
|
+
"apify",
|
|
22
|
+
"api",
|
|
23
|
+
"apifier",
|
|
24
|
+
"crawler",
|
|
25
|
+
"scraper"
|
|
26
|
+
],
|
|
27
|
+
"author": {
|
|
28
|
+
"name": "Apify",
|
|
29
|
+
"email": "support@apify.com",
|
|
30
|
+
"url": "https://apify.com"
|
|
31
|
+
},
|
|
32
|
+
"contributors": [
|
|
33
|
+
"Jan Curn <jan@apify.com>",
|
|
34
|
+
"Marek Trunkát <marek@apify.com>",
|
|
35
|
+
"Ondra Urban <ondra@apify.com>",
|
|
36
|
+
"Jakub Drobník <jakub.drobnik@apify.com>"
|
|
37
|
+
],
|
|
38
|
+
"license": "Apache-2.0",
|
|
39
|
+
"repository": {
|
|
40
|
+
"type": "git",
|
|
41
|
+
"url": "git+https://github.com/apify/apify-client-js"
|
|
42
|
+
},
|
|
43
|
+
"bugs": {
|
|
44
|
+
"url": "https://github.com/apify/apify-client-js/issues"
|
|
45
|
+
},
|
|
46
|
+
"homepage": "https://docs.apify.com/api/client/js/",
|
|
47
|
+
"files": [
|
|
48
|
+
"dist",
|
|
49
|
+
"!dist/*.tsbuildinfo"
|
|
50
|
+
],
|
|
51
|
+
"scripts": {
|
|
52
|
+
"build": "npm run clean && npm run build:node && npm run build:browser",
|
|
53
|
+
"postbuild": "gen-esm-wrapper dist/index.js dist/index.mjs",
|
|
54
|
+
"prepublishOnly": "(test $CI || (echo \"Publishing is reserved to CI!\"; exit 1))",
|
|
55
|
+
"clean": "rimraf dist",
|
|
56
|
+
"test": "npm run build && vitest run",
|
|
57
|
+
"test:bundling": "npm run build && npm --prefix=./test/bundling run bundle:all",
|
|
58
|
+
"lint": "eslint",
|
|
59
|
+
"lint:fix": "eslint --fix",
|
|
60
|
+
"tsc-check-tests": "tsc --noEmit --project test/tsconfig.json",
|
|
61
|
+
"format": "prettier --write .",
|
|
62
|
+
"format:check": "prettier --check .",
|
|
63
|
+
"build:node": "tsc",
|
|
64
|
+
"build:browser": "rsbuild build"
|
|
65
|
+
},
|
|
66
|
+
"dependencies": {
|
|
67
|
+
"@apify/consts": "^2.50.0",
|
|
68
|
+
"@apify/log": "^2.2.6",
|
|
69
|
+
"@apify/utilities": "^2.23.2",
|
|
70
|
+
"@crawlee/types": "^3.3.0",
|
|
71
|
+
"ansi-colors": "^4.1.1",
|
|
72
|
+
"async-retry": "^1.3.3",
|
|
73
|
+
"axios": "^1.6.7",
|
|
74
|
+
"content-type": "^1.0.5",
|
|
75
|
+
"ow": "^0.28.2",
|
|
76
|
+
"proxy-agent": "^6.5.0",
|
|
77
|
+
"tslib": "^2.5.0",
|
|
78
|
+
"type-fest": "^4.0.0"
|
|
79
|
+
},
|
|
80
|
+
"devDependencies": {
|
|
81
|
+
"@apify/eslint-config": "^1.0.0",
|
|
82
|
+
"@apify/tsconfig": "^0.1.1",
|
|
83
|
+
"@crawlee/puppeteer": "^3.2.2",
|
|
84
|
+
"@rsbuild/core": "^1.3.6",
|
|
85
|
+
"@rsbuild/plugin-node-polyfill": "^1.3.0",
|
|
86
|
+
"@rspack/cli": "^1.7.6",
|
|
87
|
+
"@rspack/core": "^1.7.6",
|
|
88
|
+
"@stylistic/eslint-plugin-ts": "^4.2.0",
|
|
89
|
+
"@types/async-retry": "^1.4.5",
|
|
90
|
+
"@types/compression": "^1.8.1",
|
|
91
|
+
"@types/content-type": "^1.1.5",
|
|
92
|
+
"@types/express": "^5.0.0",
|
|
93
|
+
"@types/node": "^24.0.0",
|
|
94
|
+
"ajv": "^8.17.1",
|
|
95
|
+
"body-parser": "^2.0.0",
|
|
96
|
+
"compression": "^1.7.4",
|
|
97
|
+
"esbuild": "0.27.3",
|
|
98
|
+
"eslint": "^9.24.0",
|
|
99
|
+
"eslint-config-prettier": "^10.1.2",
|
|
100
|
+
"express": "^5.0.0",
|
|
101
|
+
"gen-esm-wrapper": "^1.1.2",
|
|
102
|
+
"globals": "^17.0.0",
|
|
103
|
+
"prettier": "^3.5.3",
|
|
104
|
+
"puppeteer": "^24.0.0",
|
|
105
|
+
"rimraf": "^6.0.0",
|
|
106
|
+
"rolldown": "^1.0.0-rc.4",
|
|
107
|
+
"typescript": "^5.8.3",
|
|
108
|
+
"typescript-eslint": "^8.29.1",
|
|
109
|
+
"vitest": "^4.0.16",
|
|
110
|
+
"webpack": "^5.105.2",
|
|
111
|
+
"webpack-cli": "^6.0.1"
|
|
112
|
+
},
|
|
113
|
+
"packageManager": "npm@10.9.2"
|
|
114
114
|
}
|