-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
45 lines (45 loc) · 1.11 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
{
"name": "slack-edge",
"version": "1.3.5",
"description": "Slack app development framework for edge functions with streamlined TypeScript support",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"build:clean": "rm -rf ./dist && tsc",
"format": "npx @biomejs/biome format --write *.json src/ test/",
"test": "npm run format && npx vitest",
"ci-test": "npx vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seratch/slack-edge.git"
},
"keywords": [
"Slack",
"ChatBot",
"TypeScript",
"Deno",
"Bun",
"Edge Functions",
"Cloudflare",
"Cloudflare Workers",
"Vercel",
"Vercel Edge Functions",
"Serverless"
],
"author": "Kazuhiro Sera",
"license": "MIT",
"bugs": {
"url": "https://github.com/seratch/slack-edge/issues"
},
"homepage": "https://github.com/seratch/slack-edge#readme",
"dependencies": {
"slack-web-api-client": "^1.1.4"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@vitest/coverage-v8": "^2.1.8",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}