apify 3.7.1-beta.8 → 3.7.1

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.
Files changed (1) hide show
  1. package/package.json +20 -22
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apify",
3
- "version": "3.7.1-beta.8",
3
+ "version": "3.7.1",
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"
@@ -47,25 +47,6 @@
47
47
  "dist",
48
48
  "!dist/tsconfig.build.tsbuildinfo"
49
49
  ],
50
- "scripts": {
51
- "prepare": "husky",
52
- "clean": "rimraf ./dist",
53
- "compile": "tsc -p tsconfig.build.json && gen-esm-wrapper ./dist/index.js ./dist/index.mjs",
54
- "fixApifyExport": "node ./scripts/temp_fix_apify_exports.mjs",
55
- "build": "npm run clean && npm run compile && npm run fixApifyExport",
56
- "prepublishOnly": "npm run build",
57
- "ci:build": "npm run build",
58
- "test": "vitest run --silent",
59
- "test:e2e": "npm run test:e2e:sdk",
60
- "test:e2e:sdk": "npm run test:e2e:sdk:tarball && node test/e2e/runSdkTests.mjs",
61
- "test:e2e:sdk:tarball": "npm run build && mv $(npm pack | tail -n 1) test/e2e/apify.tgz",
62
- "tsc-check-tests": "tsc --noEmit --project test/tsconfig.json",
63
- "coverage": "vitest --coverage",
64
- "lint": "eslint",
65
- "lint:fix": "eslint --fix",
66
- "format": "prettier --write .",
67
- "format:check": "prettier --check ."
68
- },
69
50
  "lint-staged": {
70
51
  "src/**/*": [
71
52
  "eslint --fix"
@@ -120,5 +101,22 @@
120
101
  "vite-tsconfig-paths": "^6.0.0",
121
102
  "vitest": "^3.0.0"
122
103
  },
123
- "packageManager": "npm@10.9.2"
124
- }
104
+ "scripts": {
105
+ "clean": "rimraf ./dist",
106
+ "compile": "tsc -p tsconfig.build.json && gen-esm-wrapper ./dist/index.js ./dist/index.mjs",
107
+ "fixApifyExport": "node ./scripts/temp_fix_apify_exports.mjs",
108
+ "build": "pnpm clean && pnpm compile && pnpm fixApifyExport",
109
+ "ci:build": "pnpm build",
110
+ "test": "vitest run --silent",
111
+ "test:e2e": "pnpm test:e2e:sdk",
112
+ "test:e2e:sdk": "pnpm test:e2e:sdk:tarball && node test/e2e/runSdkTests.mjs",
113
+ "test:e2e:sdk:tarball": "pnpm build && mv $(pnpm pack | tail -n 1) test/e2e/apify.tgz",
114
+ "tsc-check-tests": "tsc --noEmit --project test/tsconfig.json",
115
+ "coverage": "vitest --coverage",
116
+ "lint": "eslint",
117
+ "lint:fix": "eslint --fix",
118
+ "format": "prettier --write .",
119
+ "format:check": "prettier --check .",
120
+ "preinstall": "npx only-allow pnpm"
121
+ }
122
+ }