-
Notifications
You must be signed in to change notification settings - Fork 675
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.61 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.61 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"$schema": "https://www.schemastore.org/package.json",
"name": "@slack/webhook",
"version": "7.0.6",
"description": "Official library for using the Slack Platform's Incoming Webhooks",
"author": "Slack Technologies, LLC",
"license": "MIT",
"type": "module",
"keywords": [
"slack",
"request",
"client",
"http",
"api",
"proxy"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"engines": {
"node": ">= 20",
"npm": ">= 9.6.4"
},
"repository": "slackapi/node-slack-sdk",
"homepage": "https://docs.slack.dev/tools/node-slack-sdk/webhook/",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/slackapi/node-slack-sdk/issues"
},
"scripts": {
"prebuild": "shx rm -rf ./dist ./lcov.info",
"build": "tsc",
"docs": "npx typedoc --plugin typedoc-plugin-markdown",
"lint": "npx @biomejs/biome check .",
"lint:fix": "npx @biomejs/biome check --write .",
"prepack": "npm run build",
"pretest": "npm run lint && npm run build",
"test": "node --import tsx --test --experimental-test-coverage",
"posttest": "node --import tsx --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=./lcov.info"
},
"devDependencies": {
"@biomejs/biome": "^2.0.5",
"@types/node": ">=20.0.0",
"shx": "^0.4.0",
"source-map-support": "^0.5.21",
"tsx": "^4.20.6",
"typedoc": "^0.28.7",
"typedoc-plugin-markdown": "^4.7.1",
"typescript": "^5.8.3",
"undici": "^7.16.0"
},
"peerDependencies": {
"@slack/types": "^2.17.0"
}
}