|
1 | 1 | { |
2 | | - "name": "apify-cli", |
3 | | - "version": "1.4.1", |
4 | | - "description": "Apify command-line interface (CLI) helps you manage the Apify cloud platform and develop, build, and deploy Apify Actors.", |
5 | | - "exports": "./dist/index.js", |
6 | | - "type": "module", |
7 | | - "scripts": { |
8 | | - "dev:apify": "tsx ./src/entrypoints/apify.ts", |
9 | | - "dev:actor": "tsx ./src/entrypoints/actor.ts", |
10 | | - "test:all": "pnpm run test:local && pnpm run test:api", |
11 | | - "test:local": "vitest run --testNamePattern \"^((?!\\[api]).)*$\" --exclude ./test/api", |
12 | | - "test:api": "vitest run --testNamePattern \"\\[api\\]\"", |
13 | | - "test:python": "vitest run --testNamePattern \"\\[python\\]\"", |
14 | | - "test:cucumber": "cross-env NODE_OPTIONS=\"--import tsx\" cucumber-js", |
15 | | - "lint": "eslint src test scripts features website", |
16 | | - "lint:fix": "eslint src test scripts features website --fix", |
17 | | - "format": "biome format . && prettier --check \"**/*.{md,yml,yaml}\"", |
18 | | - "format:fix": "biome format --write . && prettier --write \"**/*.{md,yml,yaml}\"", |
19 | | - "clean": "rimraf dist", |
20 | | - "build": "pnpm run clean && tsc && tsup", |
21 | | - "build-bundles": "bun run scripts/build-cli-bundles.ts", |
22 | | - "prepack": "pnpm run insert-cli-metadata && pnpm run build && pnpm run update-docs", |
23 | | - "insert-cli-metadata": "tsx scripts/insert-cli-metadata.ts", |
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.');\"", |
26 | | - "prepare": "husky" |
27 | | - }, |
28 | | - "files": [ |
29 | | - "dist" |
30 | | - ], |
31 | | - "bin": { |
32 | | - "actor": "./dist/actor.js", |
33 | | - "apify": "./dist/apify.js", |
34 | | - "apify-cli": "./dist/apify.js" |
35 | | - }, |
36 | | - "contributors": [ |
37 | | - "Jakub Drobník <jakub.drobnik@apify.com>", |
38 | | - "Jan Curn <jan@apify.com>", |
39 | | - "Vlad Frangu <vlad.frangu@apify.com>" |
40 | | - ], |
41 | | - "repository": { |
42 | | - "type": "git", |
43 | | - "url": "git+https://github.com/apify/apify-cli.git" |
44 | | - }, |
45 | | - "keywords": [ |
46 | | - "apify", |
47 | | - "client", |
48 | | - "node", |
49 | | - "command", |
50 | | - "line", |
51 | | - "bash" |
52 | | - ], |
53 | | - "author": { |
54 | | - "name": "Apify", |
55 | | - "email": "support@apify.com", |
56 | | - "url": "https://www.apify.com" |
57 | | - }, |
58 | | - "license": "Apache-2.0", |
59 | | - "bugs": { |
60 | | - "url": "https://github.com/apify/apify-cli/issues" |
61 | | - }, |
62 | | - "homepage": "https://github.com/apify/apify-cli#readme", |
63 | | - "engines": { |
64 | | - "node": ">=20" |
65 | | - }, |
66 | | - "dependencies": { |
67 | | - "@apify/actor-memory-expression": "^0.1.10", |
68 | | - "@apify/actor-templates": "^0.1.5", |
69 | | - "@apify/consts": "^2.52.0", |
70 | | - "@apify/input_schema": "^3.27.1", |
71 | | - "@apify/utilities": "^2.25.6", |
72 | | - "@crawlee/memory-storage": "^3.16.0", |
73 | | - "@inquirer/core": "^11.1.7", |
74 | | - "@inquirer/input": "^5.0.10", |
75 | | - "@inquirer/password": "^5.0.10", |
76 | | - "@inquirer/select": "^5.1.2", |
77 | | - "@root/walk": "~1.1.0", |
78 | | - "@sapphire/duration": "^1.2.0", |
79 | | - "@sapphire/result": "^2.8.0", |
80 | | - "@sapphire/timestamp": "^1.0.5", |
81 | | - "@skyra/jaro-winkler": "^1.1.1", |
82 | | - "adm-zip": "~0.5.17", |
83 | | - "ajv": "~8.18.0", |
84 | | - "apify-client": "^2.22.3", |
85 | | - "archiver": "~7.0.1", |
86 | | - "axios": "^1.14.0", |
87 | | - "chalk": "~5.6.2", |
88 | | - "cli-table3": "^0.6.5", |
89 | | - "computer-name": "~0.1.0", |
90 | | - "configparser": "~0.3.10", |
91 | | - "cors": "~2.8.6", |
92 | | - "detect-indent": "~7.0.2", |
93 | | - "es-toolkit": "^1.45.1", |
94 | | - "escape-string-regexp": "~5.0.0", |
95 | | - "execa": "^9.6.1", |
96 | | - "express": "~5.2.1", |
97 | | - "handlebars": "~4.7.9", |
98 | | - "ignore": "^7.0.5", |
99 | | - "indent-string": "^5.0.0", |
100 | | - "is-ci": "~4.1.0", |
101 | | - "istextorbinary": "~9.5.0", |
102 | | - "jju": "~1.4.0", |
103 | | - "js-levenshtein": "^1.1.6", |
104 | | - "json-schema-to-typescript": "^15.0.4", |
105 | | - "mime": "~4.1.0", |
106 | | - "open": "~11.0.0", |
107 | | - "rimraf": "~6.1.3", |
108 | | - "semver": "~7.7.4", |
109 | | - "string-width": "^8.2.0", |
110 | | - "strip-ansi": "^7.2.0", |
111 | | - "tiged": "~2.12.7", |
112 | | - "tinyglobby": "^0.2.15", |
113 | | - "which": "^6.0.1", |
114 | | - "widest-line": "^6.0.0", |
115 | | - "wrap-ansi": "^10.0.0" |
116 | | - }, |
117 | | - "devDependencies": { |
118 | | - "@apify/eslint-config": "^1.1.0", |
119 | | - "@apify/tsconfig": "^0.1.1", |
120 | | - "@biomejs/biome": "^2.4.10", |
121 | | - "@crawlee/types": "^3.16.0", |
122 | | - "@cucumber/cucumber": "^12.7.0", |
123 | | - "@types/adm-zip": "^0.5.8", |
124 | | - "@types/archiver": "^7.0.0", |
125 | | - "@types/bun": "^1.3.11", |
126 | | - "@types/cors": "^2.8.19", |
127 | | - "@types/execa": "^2.0.2", |
128 | | - "@types/express": "^5.0.6", |
129 | | - "@types/jju": "^1.4.5", |
130 | | - "@types/js-levenshtein": "^1.1.3", |
131 | | - "@types/mime": "^4.0.0", |
132 | | - "@types/node": "^24.12.0", |
133 | | - "@types/semver": "^7.7.1", |
134 | | - "@types/which": "^3.0.4", |
135 | | - "apify": "^3.7.0", |
136 | | - "cross-env": "^10.1.0", |
137 | | - "eslint": "^9.39.4", |
138 | | - "eslint-config-prettier": "^10.1.8", |
139 | | - "eslint-plugin-react": "^7.37.5", |
140 | | - "eslint-plugin-react-hooks": "^7.0.1", |
141 | | - "globals": "^16.2.0", |
142 | | - "husky": "^9.1.7", |
143 | | - "lint-staged": "^16.4.0", |
144 | | - "mock-stdin": "^1.0.0", |
145 | | - "prettier": "^3.8.1", |
146 | | - "tsup": "^8.5.1", |
147 | | - "tsx": "^4.21.0", |
148 | | - "typescript": "^6.0.2", |
149 | | - "typescript-eslint": "^8.58.0", |
150 | | - "vitest": "^4.1.2" |
151 | | - }, |
152 | | - "volta": { |
153 | | - "node": "24.14.1", |
154 | | - "pnpm": "10.33.0" |
155 | | - }, |
156 | | - "packageManager": "pnpm@10.33.0", |
157 | | - "devEngines": { |
158 | | - "runtime": [ |
159 | | - { |
160 | | - "name": "node", |
161 | | - "version": ">= 20", |
162 | | - "onFail": "error" |
163 | | - }, |
164 | | - { |
165 | | - "name": "bun", |
166 | | - "version": ">= 1.2.5", |
167 | | - "onFail": "ignore" |
168 | | - } |
169 | | - ], |
170 | | - "packageManager": { |
171 | | - "name": "pnpm", |
172 | | - "version": ">= 10", |
173 | | - "onFail": "warn" |
174 | | - } |
175 | | - }, |
176 | | - "lint-staged": { |
177 | | - "*": "biome format --write --no-errors-on-unmatched", |
178 | | - "*.{mjs,js,ts,mts,jsx,tsx}": "eslint --fix", |
179 | | - "*.md": "prettier --write" |
180 | | - } |
| 2 | + "name": "apify-cli", |
| 3 | + "version": "1.4.1", |
| 4 | + "description": "Apify command-line interface (CLI) helps you manage the Apify cloud platform and develop, build, and deploy Apify Actors.", |
| 5 | + "exports": "./dist/index.js", |
| 6 | + "type": "module", |
| 7 | + "scripts": { |
| 8 | + "dev:apify": "tsx ./src/entrypoints/apify.ts", |
| 9 | + "dev:actor": "tsx ./src/entrypoints/actor.ts", |
| 10 | + "test:all": "pnpm run test:local && pnpm run test:api", |
| 11 | + "test:local": "vitest run --testNamePattern \"^((?!\\[api]).)*$\" --exclude ./test/api", |
| 12 | + "test:api": "vitest run --testNamePattern \"\\[api\\]\"", |
| 13 | + "test:python": "vitest run --testNamePattern \"\\[python\\]\"", |
| 14 | + "test:cucumber": "cross-env NODE_OPTIONS=\"--import tsx\" cucumber-js", |
| 15 | + "lint": "eslint src test scripts features website", |
| 16 | + "lint:fix": "eslint src test scripts features website --fix", |
| 17 | + "format": "biome format . && prettier --check \"**/*.{md,yml,yaml}\"", |
| 18 | + "format:fix": "biome format --write . && prettier --write \"**/*.{md,yml,yaml}\"", |
| 19 | + "clean": "rimraf dist", |
| 20 | + "build": "pnpm run clean && tsc && tsup", |
| 21 | + "build-bundles": "bun run scripts/build-cli-bundles.ts", |
| 22 | + "prepack": "pnpm run insert-cli-metadata && pnpm run build && pnpm run update-docs", |
| 23 | + "insert-cli-metadata": "tsx scripts/insert-cli-metadata.ts", |
| 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.');\"", |
| 26 | + "prepare": "husky" |
| 27 | + }, |
| 28 | + "files": [ |
| 29 | + "dist" |
| 30 | + ], |
| 31 | + "bin": { |
| 32 | + "actor": "./dist/actor.js", |
| 33 | + "apify": "./dist/apify.js", |
| 34 | + "apify-cli": "./dist/apify.js" |
| 35 | + }, |
| 36 | + "contributors": [ |
| 37 | + "Jakub Drobník <jakub.drobnik@apify.com>", |
| 38 | + "Jan Curn <jan@apify.com>", |
| 39 | + "Vlad Frangu <vlad.frangu@apify.com>" |
| 40 | + ], |
| 41 | + "repository": { |
| 42 | + "type": "git", |
| 43 | + "url": "git+https://github.com/apify/apify-cli.git" |
| 44 | + }, |
| 45 | + "keywords": [ |
| 46 | + "apify", |
| 47 | + "client", |
| 48 | + "node", |
| 49 | + "command", |
| 50 | + "line", |
| 51 | + "bash" |
| 52 | + ], |
| 53 | + "author": { |
| 54 | + "name": "Apify", |
| 55 | + "email": "support@apify.com", |
| 56 | + "url": "https://www.apify.com" |
| 57 | + }, |
| 58 | + "license": "Apache-2.0", |
| 59 | + "bugs": { |
| 60 | + "url": "https://github.com/apify/apify-cli/issues" |
| 61 | + }, |
| 62 | + "homepage": "https://github.com/apify/apify-cli#readme", |
| 63 | + "engines": { |
| 64 | + "node": ">=20" |
| 65 | + }, |
| 66 | + "dependencies": { |
| 67 | + "@apify/actor-memory-expression": "^0.1.10", |
| 68 | + "@apify/actor-templates": "^0.1.5", |
| 69 | + "@apify/consts": "^2.52.0", |
| 70 | + "@apify/input_schema": "^3.27.1", |
| 71 | + "@apify/utilities": "^2.25.6", |
| 72 | + "@crawlee/memory-storage": "^3.16.0", |
| 73 | + "@inquirer/core": "^11.1.7", |
| 74 | + "@inquirer/input": "^5.0.10", |
| 75 | + "@inquirer/password": "^5.0.10", |
| 76 | + "@inquirer/select": "^5.1.2", |
| 77 | + "@root/walk": "~1.1.0", |
| 78 | + "@sapphire/duration": "^1.2.0", |
| 79 | + "@sapphire/result": "^2.8.0", |
| 80 | + "@sapphire/timestamp": "^1.0.5", |
| 81 | + "@skyra/jaro-winkler": "^1.1.1", |
| 82 | + "adm-zip": "~0.5.17", |
| 83 | + "ajv": "~8.18.0", |
| 84 | + "apify-client": "^2.22.3", |
| 85 | + "archiver": "~7.0.1", |
| 86 | + "axios": "^1.14.0", |
| 87 | + "chalk": "~5.6.2", |
| 88 | + "cli-table3": "^0.6.5", |
| 89 | + "computer-name": "~0.1.0", |
| 90 | + "configparser": "~0.3.10", |
| 91 | + "cors": "~2.8.6", |
| 92 | + "detect-indent": "~7.0.2", |
| 93 | + "es-toolkit": "^1.45.1", |
| 94 | + "escape-string-regexp": "~5.0.0", |
| 95 | + "execa": "^9.6.1", |
| 96 | + "express": "~5.2.1", |
| 97 | + "handlebars": "~4.7.9", |
| 98 | + "ignore": "^7.0.5", |
| 99 | + "indent-string": "^5.0.0", |
| 100 | + "is-ci": "~4.1.0", |
| 101 | + "istextorbinary": "~9.5.0", |
| 102 | + "jju": "~1.4.0", |
| 103 | + "js-levenshtein": "^1.1.6", |
| 104 | + "json-schema-to-typescript": "^15.0.4", |
| 105 | + "mime": "~4.1.0", |
| 106 | + "open": "~11.0.0", |
| 107 | + "rimraf": "~6.1.3", |
| 108 | + "semver": "~7.7.4", |
| 109 | + "string-width": "^8.2.0", |
| 110 | + "strip-ansi": "^7.2.0", |
| 111 | + "tiged": "~2.12.7", |
| 112 | + "tinyglobby": "^0.2.15", |
| 113 | + "which": "^6.0.1", |
| 114 | + "widest-line": "^6.0.0", |
| 115 | + "wrap-ansi": "^10.0.0" |
| 116 | + }, |
| 117 | + "devDependencies": { |
| 118 | + "@apify/eslint-config": "^1.1.0", |
| 119 | + "@apify/tsconfig": "^0.1.1", |
| 120 | + "@biomejs/biome": "^2.4.10", |
| 121 | + "@crawlee/types": "^3.16.0", |
| 122 | + "@cucumber/cucumber": "^12.7.0", |
| 123 | + "@types/adm-zip": "^0.5.8", |
| 124 | + "@types/archiver": "^7.0.0", |
| 125 | + "@types/bun": "^1.3.11", |
| 126 | + "@types/cors": "^2.8.19", |
| 127 | + "@types/execa": "^2.0.2", |
| 128 | + "@types/express": "^5.0.6", |
| 129 | + "@types/jju": "^1.4.5", |
| 130 | + "@types/js-levenshtein": "^1.1.3", |
| 131 | + "@types/mime": "^4.0.0", |
| 132 | + "@types/node": "^24.12.0", |
| 133 | + "@types/semver": "^7.7.1", |
| 134 | + "@types/which": "^3.0.4", |
| 135 | + "apify": "^3.7.0", |
| 136 | + "cross-env": "^10.1.0", |
| 137 | + "eslint": "^9.39.4", |
| 138 | + "eslint-config-prettier": "^10.1.8", |
| 139 | + "eslint-plugin-react": "^7.37.5", |
| 140 | + "eslint-plugin-react-hooks": "^7.0.1", |
| 141 | + "globals": "^16.2.0", |
| 142 | + "husky": "^9.1.7", |
| 143 | + "lint-staged": "^16.4.0", |
| 144 | + "mock-stdin": "^1.0.0", |
| 145 | + "prettier": "^3.8.1", |
| 146 | + "tsup": "^8.5.1", |
| 147 | + "tsx": "^4.21.0", |
| 148 | + "typescript": "^6.0.2", |
| 149 | + "typescript-eslint": "^8.58.0", |
| 150 | + "vitest": "^4.1.2" |
| 151 | + }, |
| 152 | + "volta": { |
| 153 | + "node": "24.14.1", |
| 154 | + "pnpm": "10.33.0" |
| 155 | + }, |
| 156 | + "packageManager": "pnpm@10.33.0", |
| 157 | + "devEngines": { |
| 158 | + "runtime": [ |
| 159 | + { |
| 160 | + "name": "node", |
| 161 | + "version": ">= 20", |
| 162 | + "onFail": "error" |
| 163 | + }, |
| 164 | + { |
| 165 | + "name": "bun", |
| 166 | + "version": ">= 1.2.5", |
| 167 | + "onFail": "ignore" |
| 168 | + } |
| 169 | + ], |
| 170 | + "packageManager": { |
| 171 | + "name": "pnpm", |
| 172 | + "version": ">= 10", |
| 173 | + "onFail": "warn" |
| 174 | + } |
| 175 | + }, |
| 176 | + "lint-staged": { |
| 177 | + "*": "biome format --write --no-errors-on-unmatched", |
| 178 | + "*.{mjs,js,ts,mts,jsx,tsx}": "eslint --fix", |
| 179 | + "*.md": "prettier --write" |
| 180 | + } |
181 | 181 | } |
0 commit comments