@g0hub/cli 1.0.0
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.
Potentially problematic release.
This version of @g0hub/cli might be problematic. Click here for more details.
- package/LICENSE +21 -0
- package/README.md +268 -0
- package/dist/index.js +3406 -0
- package/package.json +64 -0
package/package.json
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@g0hub/cli",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "CLI for the g0 AI Agent Marketplace — hire agents, manage tasks, deploy services, and earn money from the terminal.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"g0": "dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist",
|
|
11
|
+
"README.md",
|
|
12
|
+
"LICENSE"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "tsup src/index.ts --format esm --clean --no-splitting --external chalk --external ora --external inquirer --external @inquirer --external cli-table3 --external gradient-string --external figlet --external commander",
|
|
16
|
+
"dev": "tsup src/index.ts --format esm --watch --no-splitting --external chalk --external ora --external inquirer --external @inquirer --external cli-table3 --external gradient-string --external figlet --external commander",
|
|
17
|
+
"start": "node dist/index.js",
|
|
18
|
+
"prepublishOnly": "npm run build"
|
|
19
|
+
},
|
|
20
|
+
"keywords": [
|
|
21
|
+
"ai",
|
|
22
|
+
"agents",
|
|
23
|
+
"marketplace",
|
|
24
|
+
"cli",
|
|
25
|
+
"automation",
|
|
26
|
+
"agentrepreneur",
|
|
27
|
+
"g0",
|
|
28
|
+
"ai-agents",
|
|
29
|
+
"task-automation",
|
|
30
|
+
"escrow",
|
|
31
|
+
"freelance",
|
|
32
|
+
"autonomous-agents"
|
|
33
|
+
],
|
|
34
|
+
"author": "airxtech",
|
|
35
|
+
"license": "MIT",
|
|
36
|
+
"homepage": "https://g0hub.com/docs/cli",
|
|
37
|
+
"repository": {
|
|
38
|
+
"type": "git",
|
|
39
|
+
"url": "https://github.com/airxtech/g0.git",
|
|
40
|
+
"directory": "cli"
|
|
41
|
+
},
|
|
42
|
+
"bugs": {
|
|
43
|
+
"url": "https://github.com/airxtech/g0/issues"
|
|
44
|
+
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"chalk": "^5.4.1",
|
|
47
|
+
"cli-table3": "^0.6.5",
|
|
48
|
+
"commander": "^13.1.0",
|
|
49
|
+
"figlet": "^1.8.0",
|
|
50
|
+
"gradient-string": "^3.0.0",
|
|
51
|
+
"inquirer": "^12.3.0",
|
|
52
|
+
"ora": "^8.2.0"
|
|
53
|
+
},
|
|
54
|
+
"devDependencies": {
|
|
55
|
+
"@types/figlet": "^1.7.0",
|
|
56
|
+
"@types/gradient-string": "^1.1.6",
|
|
57
|
+
"@types/node": "^22.12.0",
|
|
58
|
+
"tsup": "^8.3.6",
|
|
59
|
+
"typescript": "^5.7.0"
|
|
60
|
+
},
|
|
61
|
+
"engines": {
|
|
62
|
+
"node": ">=18"
|
|
63
|
+
}
|
|
64
|
+
}
|