generated from slack-samples/bolt-js-starter-template
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.05 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.05 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
{
"name": "bolt-js-ai-agent-template",
"version": "1.0.0",
"description": "A template for building AI-enabled Slack apps",
"type": "module",
"main": "app.js",
"scripts": {
"check": "npx tsc --checkJs --noEmit --esModuleInterop --target esnext --module nodenext --moduleResolution nodenext app.js",
"start": "node app.js",
"lint": "npx @biomejs/biome check *.js agent/ listeners/",
"lint:fix": "npx @biomejs/biome check --write *.js agent/ listeners/"
},
"author": "Slack Technologies, LLC",
"license": "MIT",
"keywords": [
"slack",
"bolt",
"slackapi"
],
"repository": {
"type": "git",
"url": "https://github.com/slack-samples/bolt-js-assistant-template.git"
},
"bugs": {
"url": "https://github.com/slack-samples/bolt-js-assistant-template/issues"
},
"dependencies": {
"@slack/bolt": "^4.6.0",
"dotenv": "~17.3.1",
"openai": "^6.25.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.5",
"@slack/cli-hooks": "^1.2.1",
"@types/node": "^25.3.3",
"typescript": "^5.9.3"
}
}