apify-cli 0.21.8-beta.1 → 0.21.8-beta.11

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 CHANGED
@@ -1,17 +1,18 @@
1
1
  {
2
2
  "name": "apify-cli",
3
- "version": "0.21.8-beta.1",
3
+ "version": "0.21.8-beta.11",
4
4
  "description": "Apify command-line interface (CLI) helps you manage the Apify cloud platform and develop, build, and deploy Apify Actors.",
5
5
  "exports": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
7
7
  "type": "module",
8
8
  "scripts": {
9
- "dev": "tsx ./src/entrypoints/apify.ts",
9
+ "dev:apify": "tsx ./src/entrypoints/apify.ts",
10
+ "dev:actor": "tsx ./src/entrypoints/actor.ts",
10
11
  "test": "vitest run",
11
12
  "test-python": "vitest run -t '.*\\[python\\]'",
12
13
  "test:cucumber": "cross-env NODE_OPTIONS=\"--import tsx\" cucumber-js",
13
- "lint": "eslint src test scripts --ext .ts,.cjs,.mjs",
14
- "lint:fix": "eslint src test scripts --fix --ext .ts,.cjs,.mjs",
14
+ "lint": "eslint src test scripts features --ext .ts,.cjs,.mjs",
15
+ "lint:fix": "eslint src test scripts features --fix --ext .ts,.cjs,.mjs",
15
16
  "format": "biome format . && prettier --check \"**/*.{md,yml,yaml}\"",
16
17
  "format:fix": "biome format --write . && prettier --write \"**/*.{md,yml,yaml}\"",
17
18
  "clean": "rimraf dist",
@@ -26,7 +27,8 @@
26
27
  ],
27
28
  "bin": {
28
29
  "actor": "./dist/entrypoints/actor.js",
29
- "apify": "./dist/entrypoints/apify.js"
30
+ "apify": "./dist/entrypoints/apify.js",
31
+ "apify-cli": "./dist/entrypoints/apify.js"
30
32
  },
31
33
  "contributors": [
32
34
  "Jakub Drobník <jakub.drobnik@apify.com>",
@@ -68,6 +70,7 @@
68
70
  "@sapphire/duration": "^1.1.2",
69
71
  "@sapphire/result": "^2.7.2",
70
72
  "@sapphire/timestamp": "^1.0.3",
73
+ "@skyra/jaro-winkler": "^1.1.1",
71
74
  "adm-zip": "~0.5.15",
72
75
  "ajv": "~8.17.1",
73
76
  "apify-client": "^2.11.0",
@@ -145,7 +148,7 @@
145
148
  "vitest": "^3.0.0"
146
149
  },
147
150
  "volta": {
148
- "node": "22.15.1",
151
+ "node": "22.16.0",
149
152
  "yarn": "4.9.1"
150
153
  },
151
154
  "packageManager": "yarn@4.9.1",