apify 3.7.1-beta.9 → 3.7.2-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/package.json +10 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "apify",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.2-beta.0",
|
|
4
4
|
"description": "The scalable web crawling and scraping library for JavaScript/Node.js. Enables development of data extraction and web automation jobs (not only) with headless Chrome and Puppeteer.",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=16.0.0"
|
|
@@ -49,10 +49,10 @@
|
|
|
49
49
|
],
|
|
50
50
|
"lint-staged": {
|
|
51
51
|
"src/**/*": [
|
|
52
|
-
"
|
|
52
|
+
"oxlint --type-aware --fix --no-error-on-unmatched-pattern"
|
|
53
53
|
],
|
|
54
54
|
"test/**/*": [
|
|
55
|
-
"
|
|
55
|
+
"oxlint --type-aware --fix --no-error-on-unmatched-pattern"
|
|
56
56
|
],
|
|
57
57
|
"*": "prettier --write --ignore-unknown"
|
|
58
58
|
},
|
|
@@ -73,8 +73,8 @@
|
|
|
73
73
|
"ws": "^8.18.0"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
|
-
"@apify/
|
|
77
|
-
"@apify/tsconfig": "^0.1.
|
|
76
|
+
"@apify/oxlint-config": "^0.2.5",
|
|
77
|
+
"@apify/tsconfig": "^0.1.2",
|
|
78
78
|
"@commitlint/config-conventional": "^20.0.0",
|
|
79
79
|
"@playwright/browser-chromium": "^1.46.0",
|
|
80
80
|
"@types/content-type": "^1.1.8",
|
|
@@ -85,24 +85,23 @@
|
|
|
85
85
|
"@types/ws": "^8.5.12",
|
|
86
86
|
"commitlint": "^20.0.0",
|
|
87
87
|
"crawlee": "^3.13.5",
|
|
88
|
-
"eslint": "^9.23.0",
|
|
89
|
-
"eslint-config-prettier": "^10.1.1",
|
|
90
88
|
"gen-esm-wrapper": "^1.1.3",
|
|
91
89
|
"globby": "^16.0.0",
|
|
92
90
|
"husky": "^9.1.7",
|
|
93
91
|
"lint-staged": "^16.0.0",
|
|
92
|
+
"oxlint": "1.62.0",
|
|
93
|
+
"oxlint-tsgolint": "0.22.0",
|
|
94
94
|
"playwright": "^1.46.0",
|
|
95
95
|
"prettier": "3.8.1",
|
|
96
96
|
"puppeteer": "^24.0.0",
|
|
97
97
|
"rimraf": "^6.0.1",
|
|
98
98
|
"tsx": "^4.16.5",
|
|
99
99
|
"typescript": "~5.9.0",
|
|
100
|
-
"typescript-eslint": "^8.28.0",
|
|
101
100
|
"vite-tsconfig-paths": "^6.0.0",
|
|
102
101
|
"vitest": "^3.0.0"
|
|
103
102
|
},
|
|
104
103
|
"scripts": {
|
|
105
|
-
"clean": "rimraf ./dist",
|
|
104
|
+
"clean": "rimraf ./dist ./tsconfig.build.tsbuildinfo",
|
|
106
105
|
"compile": "tsc -p tsconfig.build.json && gen-esm-wrapper ./dist/index.js ./dist/index.mjs",
|
|
107
106
|
"fixApifyExport": "node ./scripts/temp_fix_apify_exports.mjs",
|
|
108
107
|
"build": "pnpm clean && pnpm compile && pnpm fixApifyExport",
|
|
@@ -113,8 +112,8 @@
|
|
|
113
112
|
"test:e2e:sdk:tarball": "pnpm build && mv $(pnpm pack | tail -n 1) test/e2e/apify.tgz",
|
|
114
113
|
"tsc-check-tests": "tsc --noEmit --project test/tsconfig.json",
|
|
115
114
|
"coverage": "vitest --coverage",
|
|
116
|
-
"lint": "
|
|
117
|
-
"lint:fix": "
|
|
115
|
+
"lint": "oxlint --type-aware",
|
|
116
|
+
"lint:fix": "oxlint --type-aware --fix",
|
|
118
117
|
"format": "prettier --write .",
|
|
119
118
|
"format:check": "prettier --check .",
|
|
120
119
|
"preinstall": "npx only-allow pnpm"
|