-
Notifications
You must be signed in to change notification settings - Fork 95
/
package.json
26 lines (26 loc) · 1.2 KB
/
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
{
"name": "hexabot",
"private": true,
"workspaces": [
"frontend",
"widget"
],
"version": "2.1.9",
"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": "AGPL-3.0-only",
"scripts": {
"prepare": "husky install",
"dev:frontend": "npm run dev --workspace=frontend",
"dev:widget": "npm run dev --workspace=widget",
"release:api:patch": "cd api/ && npm version --git-tag-version false --commit-hooks false patch",
"release:api:minor": "cd api/ && npm version --git-tag-version false --commit-hooks false minor",
"release:patch": "npm run release:api:patch && npm version --git-tag-version false --commit-hooks false --workspaces patch",
"release:minor": "npm run release:api:minor && npm version --git-tag-version false --commit-hooks false --workspaces minor"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"husky": "^9.0.11"
}
}