-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 911 Bytes
/
package.json
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
{
"name": "hexabot-cli",
"version": "2.0.0",
"description": "Hexabot CLI for creating and managing chatbots built with Hexabot.",
"main": "dist/index.js",
"type": "module",
"bin": {
"hexabot": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/cli.js",
"dev": "ts-node src/cli.ts",
"prepare": "npm run build"
},
"keywords": [],
"author": "Hexastack",
"license": "AGPL-3.0-only",
"dependencies": {
"axios": "^1.7.7",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"decompress": "^4.2.1",
"degit": "^2.8.4",
"dotenv": "^16.4.5",
"figlet": "^1.7.0"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/commander": "^2.12.2",
"@types/decompress": "^4.2.7",
"@types/degit": "^2.8.6",
"@types/figlet": "^1.5.8",
"@types/node": "^22.7.4",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
}
}