-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.04 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
{
"name": "slack-web-api-client",
"version": "1.1.4",
"description": "Streamlined Slack Web API client for TypeScript",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"build:clean": "rm -rf ./dist && tsc",
"format": "npx @biomejs/biome format --write src/ test/",
"test": "npm run format && npx vitest",
"ci-test": "npx vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seratch/slack-web-api-client.git"
},
"keywords": [
"Slack",
"ChatBot",
"TypeScript",
"Node.js",
"Deno",
"Cloudflare Workers"
],
"author": "Kazuhiro Sera",
"license": "MIT",
"bugs": {
"url": "https://github.com/seratch/slack-web-api-client/issues"
},
"homepage": "https://github.com/seratch/slack-web-api-client#readme",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@vitest/coverage-v8": "^2.1.8",
"msw": "^2.7.0",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"overrides": {
"msw": {
"path-to-regexp": "^8.1.0"
}
}
}