apify-cli 1.2.2-beta.9 → 1.3.1-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/CHANGELOG.md +20 -2
- package/dist/.tsbuildinfo +1 -1
- package/dist/actor.js +1 -1
- package/dist/apify.js +1 -1
- package/dist/chunk-5EG27YFB.js +311 -0
- package/dist/chunk-5EG27YFB.js.map +1 -0
- package/package.json +13 -12
- package/dist/chunk-JZ6KLHT4.js +0 -255
- package/dist/chunk-JZ6KLHT4.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "apify-cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.1-beta.0",
|
|
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",
|
|
@@ -22,7 +22,8 @@
|
|
|
22
22
|
"prepack": "yarn insert-cli-metadata && yarn build && yarn update-docs",
|
|
23
23
|
"insert-cli-metadata": "tsx scripts/insert-cli-metadata.ts",
|
|
24
24
|
"update-docs": "tsx scripts/generate-cli-docs.ts",
|
|
25
|
-
"postinstall": "node -e \"console.log('We have an active developer community on Discord. You can find it on https://discord.gg/crawlee-apify-801163717915574323.');\""
|
|
25
|
+
"postinstall": "node -e \"console.log('We have an active developer community on Discord. You can find it on https://discord.gg/crawlee-apify-801163717915574323.');\"",
|
|
26
|
+
"prepare": "husky"
|
|
26
27
|
},
|
|
27
28
|
"files": [
|
|
28
29
|
"dist"
|
|
@@ -79,8 +80,8 @@
|
|
|
79
80
|
"@sapphire/timestamp": "^1.0.3",
|
|
80
81
|
"@skyra/jaro-winkler": "^1.1.1",
|
|
81
82
|
"adm-zip": "~0.5.15",
|
|
82
|
-
"ajv": "~8.
|
|
83
|
-
"apify-client": "^2.
|
|
83
|
+
"ajv": "~8.18.0",
|
|
84
|
+
"apify-client": "^2.22.0",
|
|
84
85
|
"archiver": "~7.0.1",
|
|
85
86
|
"axios": "^1.11.0",
|
|
86
87
|
"chalk": "~5.6.0",
|
|
@@ -92,14 +93,14 @@
|
|
|
92
93
|
"escape-string-regexp": "~5.0.0",
|
|
93
94
|
"execa": "^9.5.2",
|
|
94
95
|
"express": "~5.2.0",
|
|
95
|
-
"globby": "~16.1.0",
|
|
96
96
|
"handlebars": "~4.7.8",
|
|
97
|
+
"ignore": "^7.0.0",
|
|
97
98
|
"indent-string": "^5.0.0",
|
|
98
99
|
"is-ci": "~4.1.0",
|
|
99
100
|
"istextorbinary": "~9.5.0",
|
|
100
101
|
"jju": "~1.4.0",
|
|
101
102
|
"js-levenshtein": "^1.1.6",
|
|
102
|
-
"
|
|
103
|
+
"json-schema-to-typescript": "^15.0.4",
|
|
103
104
|
"mime": "~4.1.0",
|
|
104
105
|
"open": "~11.0.0",
|
|
105
106
|
"rimraf": "~6.1.0",
|
|
@@ -107,9 +108,10 @@
|
|
|
107
108
|
"string-width": "^8.0.0",
|
|
108
109
|
"strip-ansi": "^7.1.0",
|
|
109
110
|
"tiged": "~2.12.7",
|
|
111
|
+
"tinyglobby": "^0.2.15",
|
|
110
112
|
"which": "^6.0.0",
|
|
111
|
-
"widest-line": "^
|
|
112
|
-
"wrap-ansi": "^
|
|
113
|
+
"widest-line": "^6.0.0",
|
|
114
|
+
"wrap-ansi": "^10.0.0"
|
|
113
115
|
},
|
|
114
116
|
"devDependencies": {
|
|
115
117
|
"@apify/eslint-config": "^1.0.0",
|
|
@@ -123,10 +125,8 @@
|
|
|
123
125
|
"@types/cors": "^2.8.17",
|
|
124
126
|
"@types/execa": "^2.0.2",
|
|
125
127
|
"@types/express": "^5.0.0",
|
|
126
|
-
"@types/is-ci": "^3.0.4",
|
|
127
128
|
"@types/jju": "^1.4.5",
|
|
128
129
|
"@types/js-levenshtein": "^1",
|
|
129
|
-
"@types/lodash.clonedeep": "^4",
|
|
130
130
|
"@types/mime": "^4.0.0",
|
|
131
131
|
"@types/node": "^24.0.0",
|
|
132
132
|
"@types/semver": "^7.5.8",
|
|
@@ -136,6 +136,7 @@
|
|
|
136
136
|
"cross-env": "^10.0.0",
|
|
137
137
|
"eslint": "^9.25.1",
|
|
138
138
|
"eslint-config-prettier": "^10.1.2",
|
|
139
|
+
"husky": "^9",
|
|
139
140
|
"lint-staged": "^16.0.0",
|
|
140
141
|
"mock-stdin": "^1.0.0",
|
|
141
142
|
"prettier": "^3.5.3",
|
|
@@ -146,7 +147,7 @@
|
|
|
146
147
|
"vitest": "^4.0.0"
|
|
147
148
|
},
|
|
148
149
|
"volta": {
|
|
149
|
-
"node": "24.
|
|
150
|
+
"node": "24.14.0",
|
|
150
151
|
"yarn": "4.12.0"
|
|
151
152
|
},
|
|
152
153
|
"packageManager": "yarn@4.12.0",
|
|
@@ -175,6 +176,6 @@
|
|
|
175
176
|
"*.md": "prettier --write"
|
|
176
177
|
},
|
|
177
178
|
"resolutions": {
|
|
178
|
-
"tar": "7.5.
|
|
179
|
+
"tar": "7.5.11"
|
|
179
180
|
}
|
|
180
181
|
}
|