apify-cli 1.6.1 → 1.6.2-beta.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.
package/dist/actor.js CHANGED
@@ -1,3 +1,3 @@
1
1
  #!/usr/bin/env node
2
- import{i as e,r as t,t as n}from"./_register-DeIDNArb.js";t(`Actor`);for(let e of n)e.registerCommand(`actor`);await e(`actor`);export{};
2
+ import{i as e,r as t,t as n}from"./_register-Dv1l9oAm.js";t(`Actor`);for(let e of n)e.registerCommand(`actor`);await e(`actor`);export{};
3
3
  //# sourceMappingURL=actor.js.map
package/dist/apify.js CHANGED
@@ -1,3 +1,3 @@
1
1
  #!/usr/bin/env node
2
- import{i as e,n as t,r as n}from"./_register-DeIDNArb.js";n(`Apify`);for(let e of t)e.registerCommand(`apify`);await e(`apify`);export{};
2
+ import{i as e,n as t,r as n}from"./_register-Dv1l9oAm.js";n(`Apify`);for(let e of t)e.registerCommand(`apify`);await e(`apify`);export{};
3
3
  //# sourceMappingURL=apify.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apify-cli",
3
- "version": "1.6.1",
3
+ "version": "1.6.2-beta.1",
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
  "type": "module",
@@ -96,8 +96,8 @@
96
96
  "wrap-ansi": "^10.0.0"
97
97
  },
98
98
  "devDependencies": {
99
- "@apify/eslint-config": "^1.1.0",
100
- "@apify/tsconfig": "^0.1.1",
99
+ "@apify/oxlint-config": "^0.2.5",
100
+ "@apify/tsconfig": "^0.1.2",
101
101
  "@biomejs/biome": "^2.4.10",
102
102
  "@crawlee/types": "^3.16.0",
103
103
  "@types/adm-zip": "^0.5.8",
@@ -114,24 +114,20 @@
114
114
  "@types/which": "^3.0.4",
115
115
  "apify": "^3.7.0",
116
116
  "cross-env": "^10.1.0",
117
- "eslint": "^9.39.4",
118
- "eslint-config-prettier": "^10.1.8",
119
- "eslint-plugin-react": "^7.37.5",
120
- "eslint-plugin-react-hooks": "^7.0.1",
121
- "globals": "^16.2.0",
122
117
  "husky": "^9.1.7",
123
118
  "lint-staged": "^16.4.0",
124
119
  "mock-stdin": "^1.0.0",
120
+ "oxlint": "1.62.0",
121
+ "oxlint-tsgolint": "0.22.0",
125
122
  "prettier": "^3.8.1",
126
123
  "tsdown": "^0.21.9",
127
124
  "tsx": "^4.21.0",
128
125
  "typescript": "^6.0.2",
129
- "typescript-eslint": "^8.58.0",
130
126
  "vitest": "^4.1.2"
131
127
  },
132
128
  "volta": {
133
129
  "node": "24.14.1",
134
- "pnpm": "10.33.0"
130
+ "pnpm": "10.33.4"
135
131
  },
136
132
  "devEngines": {
137
133
  "runtime": [
@@ -145,11 +141,16 @@
145
141
  "version": ">= 1.2.5",
146
142
  "onFail": "ignore"
147
143
  }
148
- ]
144
+ ],
145
+ "packageManager": {
146
+ "name": "pnpm",
147
+ "version": "10.33.4",
148
+ "onFail": "warn"
149
+ }
149
150
  },
150
151
  "lint-staged": {
151
152
  "*": "biome format --write --no-errors-on-unmatched",
152
- "*.{mjs,js,ts,mts,jsx,tsx}": "eslint --fix",
153
+ "*.{mjs,js,ts,mts,jsx,tsx}": "oxlint --type-aware --fix",
153
154
  "*.md": "prettier --write"
154
155
  },
155
156
  "scripts": {
@@ -161,8 +162,8 @@
161
162
  "test:e2e:local": "vitest run --testNamePattern \"^(?=.*\\[e2e\\])(?!.*\\[api\\]).*$\" --exclude ./test/api",
162
163
  "test:api": "vitest run --testNamePattern \"^(?=.*\\[api\\])(?!.*\\[e2e\\]).*$\" --exclude ./test/e2e",
163
164
  "test:python": "vitest run --testNamePattern \"\\[python\\]\"",
164
- "lint": "eslint",
165
- "lint:fix": "eslint --fix",
165
+ "lint": "oxlint --type-aware",
166
+ "lint:fix": "oxlint --type-aware --fix",
166
167
  "format": "biome format . && prettier --check \"**/*.{md,yml,yaml}\"",
167
168
  "format:fix": "biome format --write . && prettier --write \"**/*.{md,yml,yaml}\"",
168
169
  "clean": "rimraf dist",