-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
50 lines (50 loc) · 1.54 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
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "bot-zero",
"version": "4.0.0",
"private": true,
"author": "Wehkamp ([email protected])",
"description": "An 'empty' Slack Bot that can be the jump start for your own bot. It is based on the Hubot project.",
"dependencies": {
"@hubot-friends/hubot-slack": "^2.0.0",
"@slack/bolt": "^3.14.0",
"chalk-with-markers": "^1.0.24",
"coffeescript": "^2.7.0",
"dotenv": "^16.3.1",
"hubot": "^9.0.2",
"hubot-command-mapper": "^9.0.0",
"node-fetch": "^2.6.12",
"pino": "^8.15.1",
"pino-pretty": "^10.2.0",
"remove-markdown": "^0.5.0",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@slack/bolt": "^3.14.0",
"@slack/web-api": "^6.9.0",
"@types/hubot": "^3.3.4",
"@types/node": "^20.7.1",
"@types/node-fetch": "^3.0.2",
"@types/remove-markdown": "^0.3.2",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"ts-node-dev": "^2.0.0"
},
"scripts": {
"start": "node dist/src/index.js",
"dev": "ts-node-dev --respawn --poll --interval 1000 --transpile-only src/index.ts",
"test": "echo \"Bot Zero IV has no tests...\" & exit 0",
"prebuild": "rimraf dist",
"build": "tsc --diagnostics",
"format": "prettier --config .prettierrc {test,src}/**/*.ts --write"
},
"main": "dist/src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/wehkamp/bot-zero.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/wehkamp/bot-zero/issues"
},
"homepage": "https://github.com/wehkamp/bot-zero#readme"
}