-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 903 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 903 Bytes
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": "data-bolt-js-slack-chatbot",
"version": "2.1.0",
"description": "Data - a BoltJS powered Slack Chatbot",
"main": "app.js",
"type": "module",
"scripts": {
"start": "node app.js",
"test": "node --test",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "https://github.com/scarolan/data.git"
},
"engines": {
"node": ">=22.0.0"
},
"license": "MIT",
"dependencies": {
"@google/genai": "^2.19.0",
"@keyv/redis": "^5.1.6",
"@slack/bolt": "^5.0.0",
"dotenv": "^17.4.2",
"keyv": "^5.6.0",
"ollama": "^0.6.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.9.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"globals": "^17.11.0",
"prettier": "^3.9.6"
}
}