-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.17 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": "lichess-slack-app",
"version": "1.0.0",
"author": "ambergristle",
"license": "AGPL-3.0-or-later",
"description": "Slack integration for Lichess Daily Puzzles",
"keywords": [
"lichess",
"slack",
"node",
"daily puzzles"
],
"type": "module",
"module": "index.ts",
"main": "dist/index.js",
"scripts": {
"lint:fix": "bun --bun eslint --fix src",
"tsc": "bunx tsc",
"dev": "bun --hot run src/index.ts",
"build": "bun build --target=bun --entrypoints src/index.ts --outdir dist",
"start": "bun run dist/index.js"
},
"devDependencies": {
"@slack/web-api": "^6.9.0",
"@types/jsonwebtoken": "^9.0.6",
"@types/pug": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"bun-types": "latest",
"eslint": "^8.48.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-unused-imports": "^3.0.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@hono/zod-validator": "^0.1.8",
"date-fns": "2.0.0",
"date-fns-tz": "2.0.0",
"hono": "^4.0.7",
"jsonwebtoken": "^9.0.2",
"pug": "^3.0.2",
"wretch": "^2.6.0",
"zod": "^3.22.2"
}
}