-
Notifications
You must be signed in to change notification settings - Fork 222
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 2.35 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 2.35 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
{
"name": "@hexabot-ai/monorepo",
"private": true,
"version": "3.3.4",
"description": "Hexabot is a solution for creating and managing chatbots across multiple channels, leveraging AI for advanced conversational capabilities. It provides a user-friendly interface for building, training, and deploying chatbots with integrated support for various messaging platforms.",
"author": "Hexastack",
"license": "FCL-1.0-ALv2",
"packageManager": "pnpm@11.8.0",
"scripts": {
"dev": "turbo run dev --filter=!@hexabot-ai/cli --filter=!@hexabot-ai/widget --filter=!@hexabot-ai/graph",
"dev:all": "turbo run dev",
"build": "turbo run build",
"lint": "turbo run lint",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"format": "turbo run format",
"clean": "turbo run clean",
"prepare": "husky",
"release:prepatch": "./bump-version.sh publish alpha prepatch",
"release:preminor": "./bump-version.sh publish alpha preminor",
"release:prerelease": "./bump-version.sh publish alpha prerelease",
"release:alpha:prepatch": "./bump-version.sh publish alpha prepatch",
"release:alpha:preminor": "./bump-version.sh publish alpha preminor",
"release:alpha:premajor": "./bump-version.sh publish alpha premajor",
"release:alpha:prerelease": "./bump-version.sh publish alpha prerelease",
"release:beta:prepatch": "./bump-version.sh publish beta prepatch",
"release:beta:preminor": "./bump-version.sh publish beta preminor",
"release:beta:premajor": "./bump-version.sh publish beta premajor",
"release:beta:prerelease": "./bump-version.sh publish beta prerelease",
"release:stable:patch": "./bump-version.sh publish stable patch",
"release:stable:minor": "./bump-version.sh publish stable minor",
"release:stable:major": "./bump-version.sh publish stable major",
"release:promote:latest": "./bump-version.sh promote latest current",
"dev:api": "turbo run dev --filter=@hexabot-ai/api --filter=@hexabot-ai/agentic --filter=@hexabot-ai/types"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"concurrently": "^10.0.3",
"husky": "^9.0.11",
"rimraf": "^6.0.1",
"turbo": "^2.10.4"
},
"engines": {
"node": "^24.17.0"
},
"dependencies": {
"@hexabot-ai/api": "workspace:*",
"@hexabot-ai/types": "workspace:*"
}
}