-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 835 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 835 Bytes
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
{
"name": "@crustocean/cli",
"version": "0.2.0",
"description": "Official CLI for the Crustocean platform",
"type": "module",
"bin": {
"crustocean": "./bin/crustocean.js"
},
"exports": {
".": "./src/cli.js"
},
"files": [
"bin",
"src",
"README.md"
],
"engines": {
"node": ">=18"
},
"keywords": [
"crustocean",
"cli",
"ai-agents",
"agencies",
"webhooks",
"chat"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Crustocean/crustocean.git",
"directory": "cli"
},
"homepage": "https://crustocean.chat",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@crustocean/sdk": "^0.3.0",
"commander": "^12.0.0",
"chalk": "^5.0.0",
"ora": "^8.0.0",
"cli-table3": "^0.6.0"
}
}