-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
181 lines (181 loc) · 5.93 KB
/
package.json
File metadata and controls
181 lines (181 loc) · 5.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
{
"name": "apify-cli",
"version": "1.2.2",
"description": "Apify command-line interface (CLI) helps you manage the Apify cloud platform and develop, build, and deploy Apify Actors.",
"exports": "./dist/index.js",
"type": "module",
"scripts": {
"dev:apify": "tsx ./src/entrypoints/apify.ts",
"dev:actor": "tsx ./src/entrypoints/actor.ts",
"test:all": "yarn test:local && yarn test:api",
"test:local": "vitest run --testNamePattern '^((?!\\[api]).)*$' --exclude ./test/api",
"test:api": "vitest run --testNamePattern '\\[api\\]'",
"test:python": "vitest run --testNamePattern '\\[python\\]'",
"test:cucumber": "cross-env NODE_OPTIONS=\"--import tsx\" cucumber-js",
"lint": "eslint src test scripts features --ext .ts,.cjs,.mjs",
"lint:fix": "eslint src test scripts features --fix --ext .ts,.cjs,.mjs",
"format": "biome format . && prettier --check \"**/*.{md,yml,yaml}\"",
"format:fix": "biome format --write . && prettier --write \"**/*.{md,yml,yaml}\"",
"clean": "rimraf dist",
"build": "yarn clean && tsc && tsup",
"build-bundles": "bun run scripts/build-cli-bundles.ts",
"prepack": "yarn insert-cli-metadata && yarn build && yarn update-docs",
"insert-cli-metadata": "tsx scripts/insert-cli-metadata.ts",
"update-docs": "tsx scripts/generate-cli-docs.ts",
"postinstall": "node -e \"console.log('We have an active developer community on Discord. You can find it on https://discord.gg/crawlee-apify-801163717915574323.');\"",
"prepare": "husky"
},
"files": [
"dist"
],
"bin": {
"actor": "./dist/actor.js",
"apify": "./dist/apify.js",
"apify-cli": "./dist/apify.js"
},
"contributors": [
"Jakub Drobník <jakub.drobnik@apify.com>",
"Jan Curn <jan@apify.com>",
"Vlad Frangu <vlad.frangu@apify.com>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/apify/apify-cli.git"
},
"keywords": [
"apify",
"client",
"node",
"command",
"line",
"bash"
],
"author": {
"name": "Apify",
"email": "support@apify.com",
"url": "https://www.apify.com"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/apify/apify-cli/issues"
},
"homepage": "https://github.com/apify/apify-cli#readme",
"engines": {
"node": ">=20"
},
"dependencies": {
"@apify/actor-memory-expression": "^0.1.3",
"@apify/actor-templates": "^0.1.5",
"@apify/consts": "^2.36.0",
"@apify/input_schema": "^3.17.0",
"@apify/utilities": "^2.18.0",
"@crawlee/memory-storage": "^3.12.0",
"@inquirer/core": "^11.0.0",
"@inquirer/input": "^5.0.0",
"@inquirer/password": "^5.0.0",
"@inquirer/select": "^5.0.0",
"@root/walk": "~1.1.0",
"@sapphire/duration": "^1.1.2",
"@sapphire/result": "^2.7.2",
"@sapphire/timestamp": "^1.0.3",
"@skyra/jaro-winkler": "^1.1.1",
"adm-zip": "~0.5.15",
"ajv": "~8.18.0",
"apify-client": "^2.22.0",
"archiver": "~7.0.1",
"axios": "^1.11.0",
"chalk": "~5.6.0",
"cli-table3": "^0.6.5",
"computer-name": "~0.1.0",
"configparser": "~0.3.10",
"cors": "~2.8.5",
"detect-indent": "~7.0.1",
"escape-string-regexp": "~5.0.0",
"execa": "^9.5.2",
"express": "~5.2.0",
"handlebars": "~4.7.8",
"ignore": "^7.0.0",
"indent-string": "^5.0.0",
"is-ci": "~4.1.0",
"istextorbinary": "~9.5.0",
"jju": "~1.4.0",
"js-levenshtein": "^1.1.6",
"json-schema-to-typescript": "^15.0.4",
"mime": "~4.1.0",
"open": "~11.0.0",
"rimraf": "~6.1.0",
"semver": "~7.7.0",
"string-width": "^8.0.0",
"strip-ansi": "^7.1.0",
"tiged": "~2.12.7",
"tinyglobby": "^0.2.15",
"which": "^6.0.0",
"widest-line": "^6.0.0",
"wrap-ansi": "^10.0.0"
},
"devDependencies": {
"@apify/eslint-config": "^1.0.0",
"@apify/tsconfig": "^0.1.1",
"@biomejs/biome": "^2.0.0",
"@crawlee/types": "^3.11.1",
"@cucumber/cucumber": "^12.0.0",
"@types/adm-zip": "^0.5.5",
"@types/archiver": "^7.0.0",
"@types/bun": "^1.2.5",
"@types/cors": "^2.8.17",
"@types/execa": "^2.0.2",
"@types/express": "^5.0.0",
"@types/jju": "^1.4.5",
"@types/js-levenshtein": "^1",
"@types/mime": "^4.0.0",
"@types/node": "^24.0.0",
"@types/semver": "^7.5.8",
"@types/which": "^3.0.4",
"@yarnpkg/core": "^4.1.2",
"apify": "^3.2.4",
"cross-env": "^10.0.0",
"eslint": "^9.25.1",
"eslint-config-prettier": "^10.1.2",
"husky": "^9",
"lint-staged": "^16.0.0",
"mock-stdin": "^1.0.0",
"prettier": "^3.5.3",
"tsup": "^8.5.0",
"tsx": "^4.16.5",
"typescript": "^5.8.3",
"typescript-eslint": "^8.31.0",
"vitest": "^4.0.0"
},
"volta": {
"node": "24.14.0",
"yarn": "4.12.0"
},
"packageManager": "yarn@4.12.0",
"devEngines": {
"runtime": [
{
"name": "node",
"version": ">= 20",
"onFail": "error"
},
{
"name": "bun",
"version": ">= 1.2.5",
"onFail": "ignore"
}
],
"packageManager": {
"name": "yarn",
"version": ">= 4",
"onFail": "warn"
}
},
"lint-staged": {
"*": "biome format --write --no-errors-on-unmatched",
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts",
"*.md": "prettier --write"
},
"resolutions": {
"tar": "7.5.10"
}
}