-
Notifications
You must be signed in to change notification settings - Fork 395
/
package.json
75 lines (75 loc) · 2 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@slack/bolt",
"version": "4.1.0",
"description": "A framework for building Slack apps, fast.",
"author": "Slack Technologies, LLC",
"license": "MIT",
"keywords": [
"slack",
"bot",
"events-api",
"slash-commands",
"interactive-components",
"api",
"chatops",
"integration",
"slack-app"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"engines": {
"node": ">=18",
"npm": ">=8.6.0"
},
"scripts": {
"prepare": "npm run build",
"build": "npm run build:clean && tsc",
"build:clean": "shx rm -rf ./dist ./coverage",
"lint": "npx @biomejs/biome check --write docs src test examples",
"test": "npm run build && npm run lint && npm run test:types && npm run test:coverage",
"test:unit": "TS_NODE_PROJECT=tsconfig.json mocha --config test/unit/.mocharc.json",
"test:coverage": "c8 npm run test:unit",
"test:types": "tsd --files test/types",
"watch": "npx nodemon --watch 'src' --ext 'ts' --exec npm run build"
},
"repository": "slackapi/bolt",
"homepage": "https://slack.dev/bolt-js",
"bugs": {
"url": "https://github.com/slackapi/bolt-js/issues"
},
"dependencies": {
"@slack/logger": "^4.0.0",
"@slack/oauth": "^3",
"@slack/socket-mode": "^2.0.2",
"@slack/types": "^2.13.0",
"@slack/web-api": "^7",
"@types/express": "^4.17.21",
"axios": "^1.7.4",
"express": "^5.0.0",
"path-to-regexp": "^8.1.0",
"raw-body": "^3",
"tsscmp": "^1.0.6"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@tsconfig/node18": "^18.2.4",
"@types/chai": "^4.1.7",
"@types/mocha": "^10.0.1",
"@types/node": "22.9.0",
"@types/sinon": "^7.0.11",
"@types/tsscmp": "^1.0.0",
"c8": "^10.1.2",
"chai": "~4.3.0",
"mocha": "^10.2.0",
"rewiremock": "^3.13.4",
"shx": "^0.3.2",
"sinon": "^18.0.1",
"source-map-support": "^0.5.12",
"ts-node": "^10.9.2",
"tsd": "^0.31.2",
"typescript": "5.3.3"
}
}