-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.88 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.88 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
{
"name": "@coreclaw/cli",
"version": "0.1.0",
"description": "CoreClaw-compatible local worker runtime, verifier, and upload packaging CLI.",
"type": "module",
"homepage": "https://github.com/Core-Claw/coreclaw-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Core-Claw/coreclaw-cli.git"
},
"bugs": {
"url": "https://github.com/Core-Claw/coreclaw-cli/issues"
},
"bin": {
"coreclaw": "./bin/coreclaw.js"
},
"scripts": {
"start": "node ./bin/coreclaw.js",
"test": "node --test",
"docs:commands": "node ./tools/generate-command-docs.js",
"verify": "npm test && node ./bin/coreclaw.js verify ./examples/node-hello --cloud-output ./examples/node-hello-cloud-output.json --compare-output ./tmp/node-hello-comparison.json --min-shared 1 --max-diff 0 --output ./tmp/node-hello.zip",
"verify:release": "npm run docs:commands && npm run verify && git diff --check && npm pack --dry-run --json"
},
"files": [
"bin",
"src",
"proto",
"templates",
"tools/generate-command-docs.js",
"docs/commands.md",
"docs/roadmap.md",
"examples/coreclaw-audit-profile.json",
"examples/node-hello-cloud-output.json",
"examples/node-hello/input_schema.json",
"examples/node-hello/main.js",
"examples/node-hello/output_schema.json",
"examples/node-hello/package-lock.json",
"examples/node-hello/package.json",
"examples/node-hello/README.md",
"examples/node-hello/sdk.js",
"examples/node-hello/sdk_grpc_pb.js",
"examples/node-hello/sdk_pb.js",
"examples/node-http-proxy/input_schema.json",
"examples/node-http-proxy/main.js",
"examples/node-http-proxy/output_schema.json",
"examples/node-http-proxy/package.json",
"examples/node-http-proxy/README.md",
"examples/node-http-proxy/sdk.js",
"examples/node-http-proxy/sdk_grpc_pb.js",
"examples/node-http-proxy/sdk_pb.js",
"examples/node-lightpanda-cdp/input_schema.json",
"examples/node-lightpanda-cdp/main.js",
"examples/node-lightpanda-cdp/output_schema.json",
"examples/node-lightpanda-cdp/package.json",
"examples/node-lightpanda-cdp/README.md",
"examples/node-lightpanda-cdp/sdk.js",
"examples/node-lightpanda-cdp/sdk_grpc_pb.js",
"examples/node-lightpanda-cdp/sdk_pb.js",
"examples/python-hello/input_schema.json",
"examples/python-hello/main.py",
"examples/python-hello/output_schema.json",
"examples/python-hello/README.md",
"examples/python-hello/requirements.txt",
"examples/python-hello/sdk.py",
"examples/python-hello/sdk_pb2.py",
"examples/python-hello/sdk_pb2_grpc.py",
"README.md",
"README_CN.md",
"CONTRIBUTING.md",
"LICENSE"
],
"keywords": [
"coreclaw",
"cli",
"worker",
"scraper"
],
"license": "MIT",
"dependencies": {
"@grpc/grpc-js": "^1.14.3",
"google-protobuf": "^4.0.2",
"ws": "^8.21.0"
}
}