apify-cli 1.0.0-beta.19 → 1.0.0-beta.20
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 +200 -0
- package/README.md +18 -18
- package/bin/dev.js +0 -0
- package/bin/dev.sh +0 -0
- package/dist/.tsbuildinfo +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +144 -143
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,148 +1,149 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
2
|
+
"name": "apify-cli",
|
|
3
|
+
"version": "1.0.0-beta.20",
|
|
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
|
+
"types": "./dist/index.d.ts",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"scripts": {
|
|
9
|
+
"dev": "tsx ./bin/dev.js",
|
|
10
|
+
"test": "vitest run",
|
|
11
|
+
"test-python": "vitest run -t '.*\\[python\\]'",
|
|
12
|
+
"lint": "eslint src test",
|
|
13
|
+
"lint:fix": "eslint src test --fix",
|
|
14
|
+
"clean": "rimraf dist",
|
|
15
|
+
"build": "yarn clean && tsc",
|
|
16
|
+
"postpack": "rimraf oclif.manifest.json",
|
|
17
|
+
"prepack": "yarn build && oclif manifest && oclif readme && oclif readme --readme-path=docs/reference.md",
|
|
18
|
+
"postinstallDev": "yarn build && node ./bin/run.js check-version && node ./dist/lib/community.js"
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"dist",
|
|
22
|
+
"oclif.manifest.json",
|
|
23
|
+
"bin"
|
|
24
|
+
],
|
|
25
|
+
"bin": {
|
|
26
|
+
"apify": "./bin/run.js"
|
|
27
|
+
},
|
|
28
|
+
"contributors": [
|
|
29
|
+
"Jakub Drobník <jakub.drobnik@apify.com>",
|
|
30
|
+
"Jan Curn <jan@apify.com>"
|
|
31
|
+
],
|
|
32
|
+
"repository": {
|
|
33
|
+
"type": "git",
|
|
34
|
+
"url": "git+https://github.com/apify/apify-cli.git"
|
|
35
|
+
},
|
|
36
|
+
"keywords": [
|
|
37
|
+
"apify",
|
|
38
|
+
"client",
|
|
39
|
+
"node",
|
|
40
|
+
"command",
|
|
41
|
+
"line",
|
|
42
|
+
"bash"
|
|
43
|
+
],
|
|
44
|
+
"author": {
|
|
45
|
+
"name": "Apify",
|
|
46
|
+
"email": "support@apify.com",
|
|
47
|
+
"url": "https://www.apify.com"
|
|
48
|
+
},
|
|
49
|
+
"license": "Apache-2.0",
|
|
50
|
+
"bugs": {
|
|
51
|
+
"url": "https://github.com/apify/apify-cli/issues"
|
|
52
|
+
},
|
|
53
|
+
"homepage": "https://github.com/apify/apify-cli#readme",
|
|
54
|
+
"engines": {
|
|
55
|
+
"node": ">=18"
|
|
56
|
+
},
|
|
57
|
+
"dependencies": {
|
|
58
|
+
"@apify/actor-templates": "~0.1.5",
|
|
59
|
+
"@apify/consts": "~2.26.0",
|
|
60
|
+
"@apify/input_schema": "~3.5.15",
|
|
61
|
+
"@apify/utilities": "~2.10.0",
|
|
62
|
+
"@crawlee/memory-storage": "~3.8.1",
|
|
63
|
+
"@oclif/core": "~3.25.0",
|
|
64
|
+
"@oclif/plugin-help": "~6.0.14",
|
|
65
|
+
"@root/walk": "~1.1.0",
|
|
66
|
+
"adm-zip": "~0.5.10",
|
|
67
|
+
"ajv": "~8.12.0",
|
|
68
|
+
"apify-client": "~2.9.3",
|
|
69
|
+
"archiver": "~7.0.0",
|
|
70
|
+
"axios": "~1.6.7",
|
|
71
|
+
"chalk": "~5.3.0",
|
|
72
|
+
"computer-name": "~0.1.0",
|
|
73
|
+
"configparser": "~0.3.10",
|
|
74
|
+
"cors": "~2.8.5",
|
|
75
|
+
"detect-indent": "~7.0.1",
|
|
76
|
+
"escape-string-regexp": "~5.0.0",
|
|
77
|
+
"express": "~4.18.2",
|
|
78
|
+
"globby": "~14.0.1",
|
|
79
|
+
"handlebars": "~4.7.8",
|
|
80
|
+
"inquirer": "~9.2.15",
|
|
81
|
+
"is-ci": "~3.0.1",
|
|
82
|
+
"is-online": "~10.0.0",
|
|
83
|
+
"istextorbinary": "~9.5.0",
|
|
84
|
+
"jju": "~1.4.0",
|
|
85
|
+
"load-json-file": "~7.0.1",
|
|
86
|
+
"mime": "~4.0.1",
|
|
87
|
+
"mixpanel": "~0.18.0",
|
|
88
|
+
"open": "~10.1.0",
|
|
89
|
+
"ow": "~1.1.1",
|
|
90
|
+
"rimraf": "~5.0.5",
|
|
91
|
+
"semver": "~7.6.0",
|
|
92
|
+
"tiged": "~2.12.7",
|
|
93
|
+
"underscore": "~1.13.6",
|
|
94
|
+
"write-json-file": "~5.0.0"
|
|
95
|
+
},
|
|
96
|
+
"devDependencies": {
|
|
97
|
+
"@apify/eslint-config": "^0.4.0",
|
|
98
|
+
"@apify/eslint-config-ts": "^0.4.1",
|
|
99
|
+
"@apify/tsconfig": "^0.1.0",
|
|
100
|
+
"@crawlee/types": "^3.8.1",
|
|
101
|
+
"@oclif/test": "^3.2.1",
|
|
102
|
+
"@types/adm-zip": "^0.5.5",
|
|
103
|
+
"@types/archiver": "^6.0.2",
|
|
104
|
+
"@types/chai": "^4.3.12",
|
|
105
|
+
"@types/cors": "^2.8.17",
|
|
106
|
+
"@types/express": "^4.17.21",
|
|
107
|
+
"@types/inquirer": "^9.0.7",
|
|
108
|
+
"@types/is-ci": "^3.0.4",
|
|
109
|
+
"@types/jju": "^1.4.5",
|
|
110
|
+
"@types/mime": "^3.0.4",
|
|
111
|
+
"@types/node": "^20.11.20",
|
|
112
|
+
"@types/semver": "^7.5.8",
|
|
113
|
+
"@types/underscore": "^1.11.15",
|
|
114
|
+
"@typescript-eslint/eslint-plugin": "^7.0.2",
|
|
115
|
+
"@typescript-eslint/parser": "^7.0.2",
|
|
116
|
+
"chai": "^4.4.1",
|
|
117
|
+
"eslint": "^8.57.0",
|
|
118
|
+
"oclif": "^4.4.18",
|
|
119
|
+
"tsx": "^4.7.1",
|
|
120
|
+
"typescript": "^5.3.3",
|
|
121
|
+
"vitest": "^1.3.1"
|
|
122
|
+
},
|
|
123
|
+
"oclif": {
|
|
124
|
+
"bin": "apify",
|
|
125
|
+
"dirname": "apify",
|
|
126
|
+
"commands": "./dist/commands",
|
|
127
|
+
"plugins": [
|
|
128
|
+
"@oclif/plugin-help"
|
|
24
129
|
],
|
|
25
|
-
"
|
|
26
|
-
|
|
130
|
+
"hooks": {
|
|
131
|
+
"init": [
|
|
132
|
+
"./dist/hooks/init"
|
|
133
|
+
]
|
|
27
134
|
},
|
|
28
|
-
"
|
|
29
|
-
|
|
30
|
-
|
|
135
|
+
"helpClass": "./dist/lib/apify-oclif-help",
|
|
136
|
+
"additionalHelpFlags": [
|
|
137
|
+
"-h"
|
|
31
138
|
],
|
|
32
|
-
"
|
|
33
|
-
|
|
34
|
-
"url": "git+https://github.com/apify/apify-cli.git"
|
|
35
|
-
},
|
|
36
|
-
"keywords": [
|
|
37
|
-
"apify",
|
|
38
|
-
"client",
|
|
39
|
-
"node",
|
|
40
|
-
"command",
|
|
41
|
-
"line",
|
|
42
|
-
"bash"
|
|
139
|
+
"additionalVersionFlags": [
|
|
140
|
+
"-v"
|
|
43
141
|
],
|
|
44
|
-
"
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
},
|
|
53
|
-
"homepage": "https://github.com/apify/apify-cli#readme",
|
|
54
|
-
"engines": {
|
|
55
|
-
"node": ">=18"
|
|
56
|
-
},
|
|
57
|
-
"dependencies": {
|
|
58
|
-
"@apify/actor-templates": "~0.1.5",
|
|
59
|
-
"@apify/consts": "~2.26.0",
|
|
60
|
-
"@apify/input_schema": "~3.5.15",
|
|
61
|
-
"@apify/utilities": "~2.10.0",
|
|
62
|
-
"@crawlee/memory-storage": "~3.8.1",
|
|
63
|
-
"@oclif/core": "~3.25.0",
|
|
64
|
-
"@oclif/plugin-help": "~6.0.14",
|
|
65
|
-
"@root/walk": "~1.1.0",
|
|
66
|
-
"adm-zip": "~0.5.10",
|
|
67
|
-
"ajv": "~8.12.0",
|
|
68
|
-
"apify-client": "~2.9.3",
|
|
69
|
-
"archiver": "~7.0.0",
|
|
70
|
-
"axios": "~1.6.7",
|
|
71
|
-
"chalk": "~5.3.0",
|
|
72
|
-
"computer-name": "~0.1.0",
|
|
73
|
-
"configparser": "~0.3.10",
|
|
74
|
-
"cors": "~2.8.5",
|
|
75
|
-
"detect-indent": "~7.0.1",
|
|
76
|
-
"escape-string-regexp": "~5.0.0",
|
|
77
|
-
"express": "~4.18.2",
|
|
78
|
-
"globby": "~14.0.1",
|
|
79
|
-
"handlebars": "~4.7.8",
|
|
80
|
-
"inquirer": "~9.2.15",
|
|
81
|
-
"is-ci": "~3.0.1",
|
|
82
|
-
"is-online": "~10.0.0",
|
|
83
|
-
"istextorbinary": "~9.5.0",
|
|
84
|
-
"jju": "~1.4.0",
|
|
85
|
-
"load-json-file": "~7.0.1",
|
|
86
|
-
"mime": "~4.0.1",
|
|
87
|
-
"mixpanel": "~0.18.0",
|
|
88
|
-
"open": "~10.1.0",
|
|
89
|
-
"ow": "~1.1.1",
|
|
90
|
-
"rimraf": "~5.0.5",
|
|
91
|
-
"semver": "~7.6.0",
|
|
92
|
-
"tiged": "~2.12.7",
|
|
93
|
-
"underscore": "~1.13.6",
|
|
94
|
-
"write-json-file": "~5.0.0"
|
|
95
|
-
},
|
|
96
|
-
"devDependencies": {
|
|
97
|
-
"@apify/eslint-config": "^0.4.0",
|
|
98
|
-
"@apify/eslint-config-ts": "^0.4.1",
|
|
99
|
-
"@apify/tsconfig": "^0.1.0",
|
|
100
|
-
"@crawlee/types": "^3.8.1",
|
|
101
|
-
"@oclif/test": "^3.2.1",
|
|
102
|
-
"@types/adm-zip": "^0.5.5",
|
|
103
|
-
"@types/archiver": "^6.0.2",
|
|
104
|
-
"@types/chai": "^4.3.12",
|
|
105
|
-
"@types/cors": "^2.8.17",
|
|
106
|
-
"@types/express": "^4.17.21",
|
|
107
|
-
"@types/inquirer": "^9.0.7",
|
|
108
|
-
"@types/is-ci": "^3.0.4",
|
|
109
|
-
"@types/jju": "^1.4.5",
|
|
110
|
-
"@types/mime": "^3.0.4",
|
|
111
|
-
"@types/node": "^20.11.20",
|
|
112
|
-
"@types/semver": "^7.5.8",
|
|
113
|
-
"@types/underscore": "^1.11.15",
|
|
114
|
-
"@typescript-eslint/eslint-plugin": "^7.0.2",
|
|
115
|
-
"@typescript-eslint/parser": "^7.0.2",
|
|
116
|
-
"chai": "^4.4.1",
|
|
117
|
-
"eslint": "^8.57.0",
|
|
118
|
-
"oclif": "^4.4.18",
|
|
119
|
-
"tsx": "^4.7.1",
|
|
120
|
-
"typescript": "^5.3.3",
|
|
121
|
-
"vitest": "^1.3.1"
|
|
122
|
-
},
|
|
123
|
-
"oclif": {
|
|
124
|
-
"bin": "apify",
|
|
125
|
-
"dirname": "apify",
|
|
126
|
-
"commands": "./dist/commands",
|
|
127
|
-
"plugins": [
|
|
128
|
-
"@oclif/plugin-help"
|
|
129
|
-
],
|
|
130
|
-
"hooks": {
|
|
131
|
-
"init": [
|
|
132
|
-
"./dist/hooks/init"
|
|
133
|
-
]
|
|
134
|
-
},
|
|
135
|
-
"helpClass": "./dist/lib/apify-oclif-help",
|
|
136
|
-
"additionalHelpFlags": [
|
|
137
|
-
"-h"
|
|
138
|
-
],
|
|
139
|
-
"additionalVersionFlags": [
|
|
140
|
-
"-v"
|
|
141
|
-
],
|
|
142
|
-
"topicSeparator": " "
|
|
143
|
-
},
|
|
144
|
-
"volta": {
|
|
145
|
-
"node": "20.11.1",
|
|
146
|
-
"npm": "10.5.0"
|
|
147
|
-
}
|
|
148
|
-
}
|
|
142
|
+
"topicSeparator": " "
|
|
143
|
+
},
|
|
144
|
+
"volta": {
|
|
145
|
+
"node": "20.11.1",
|
|
146
|
+
"yarn": "4.1.1"
|
|
147
|
+
},
|
|
148
|
+
"packageManager": "yarn@4.1.1"
|
|
149
|
+
}
|