-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
38 lines (38 loc) · 1.18 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
35
36
37
38
{
"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",
"lint-staged": "lint-staged"
},
"lint-staged": {
"*.{js,ts}": "eslint --fix -c \".eslintrc-staged.js\""
},
"dependencies": {
"@nestjs/common": "^10.0.0",
"hexabot": "^2.2.1",
"hexabot-helper-chatgpt": "^2.2.2",
"hexabot-helper-gemini": "^2.2.1",
"hexabot-helper-ollama": "^2.2.2",
"hexabot-plugin-ollama": "^2.2.2"
},
"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-header": "^3.1.1",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.4.1",
"prettier": "^3.0.0"
}
}