-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.09 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
{
"name": "actor-debugger",
"version": "0.1.5",
"description": "Drop-in remote debugger for Apify Node/TS Actors: one Dockerfile CMD line launches your Actor under the Node inspector, reachable over the run's container URL. No local setup, no rebuild of your own code.",
"type": "module",
"bin": {
"actor-debugger": "bin/cli.mjs"
},
"files": [
"bin",
"lib",
"README.md"
],
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apify/actor-debugger.git",
"directory": "javascript"
},
"bugs": {
"url": "https://github.com/apify/actor-debugger/issues"
},
"homepage": "https://github.com/apify/actor-debugger/tree/master/javascript#readme",
"keywords": [
"apify",
"actor",
"debugger",
"inspector",
"devtools",
"cdp",
"remote-debugging"
],
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0",
"dependencies": {
"chii": "^1.14.0"
}
}