-
Notifications
You must be signed in to change notification settings - Fork 675
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 966 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 966 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": "@slack",
"version": "0.0.0",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/slackapi/node-slack-sdk.git"
},
"workspaces": [
"packages/cli-hooks",
"packages/cli-test",
"packages/logger",
"packages/oauth",
"packages/rtm-api",
"packages/socket-mode",
"packages/types",
"packages/web-api",
"packages/webhook"
],
"scripts": {
"changeset": "npx @changesets/cli",
"docs": "npm run docs --workspaces --if-present",
"lint": "npx @biomejs/biome check packages",
"lint:fix": "npx @biomejs/biome check --write packages",
"test": "npm test --workspaces --if-present"
},
"devDependencies": {
"@biomejs/biome": "^2.0.5",
"@changesets/cli": "^2.29.8",
"@types/node": "^18.19.130",
"shx": "^0.4.0",
"tsx": "^4.20.6",
"typedoc": "^0.28.7",
"typedoc-plugin-markdown": "^4.7.1",
"typescript": "5.9.3"
}
}