forked from Hexastack/hexabot-template-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.09 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
27
28
29
30
31
32
33
34
{
"name": "my-hexabot",
"version": "1.0.0",
"description": "My new Hexabot project",
"scripts": {
"format": "prettier --write \"extensions/**/*.ts\" \"modules/**/*.ts\"",
"lint": "eslint \"{extensions,modules}/**/*.ts\"",
"lint:fix": "eslint \"{extensions,modules}/**/*.ts\" --fix",
"prepare": "husky install"
},
"dependencies": {
"@nestjs/common": "^10.0.0",
"hexabot": "^2.1.6",
"hexabot-helper-chatgpt": "^2.1.1",
"hexabot-helper-gemini": "^2.1.3",
"hexabot-helper-ludwig": "^2.1.3",
"hexabot-helper-ollama": "^2.1.2",
"hexabot-plugin-ollama": "^2.1.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "~3.6.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-license-header": "^0.6.1",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^9.0.11",
"prettier": "^3.0.0"
}
}