-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
37 lines (37 loc) · 998 Bytes
/
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
{
"name": "slack-cloudflare-workers",
"version": "1.3.0",
"description": "Slack app development framework for Cloudflare Workers",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"build:clean": "rm -rf ./dist && tsc",
"format": "npx @biomejs/biome format --write src/ examples/simple-app/src/ examples/oauth-app/src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seratch/slack-cloudflare-workers.git"
},
"keywords": [
"Slack",
"ChatBot",
"TypeScript",
"Cloudflare",
"Cloudflare Workers",
"Serverless"
],
"author": "Kazuhiro Sera",
"license": "MIT",
"bugs": {
"url": "https://github.com/seratch/slack-cloudflare-workers/issues"
},
"homepage": "https://github.com/seratch/slack-cloudflare-workers#readme",
"dependencies": {
"@cloudflare/workers-types": "^4.20241127.0",
"slack-edge": "^1.3.3"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"typescript": "^5.7.2"
}
}