-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 971 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 971 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
{
"name": "clearbot",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Clear Function chat/slack bot",
"author": "David Mohundro <david@clearfunction.com>",
"license": "MIT",
"packageManager": "bun@1.3.14",
"dependencies": {
"@slack/bolt": "^4.7.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.60.1"
},
"scripts": {
"lint": "eslint '**/*.ts'",
"dev": "bun ./src/app.ts",
"build:prod": "bun build --compile --minify --sourceapp src/app.ts --outfile build/app",
"start:prod": "build/app",
"test": "vitest",
"test:cicd": "vitest run"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"@typescript-eslint/eslint-plugin": "^8.60.1",
"@typescript-eslint/parser": "^8.60.1",
"eslint": "^9.39.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-import": "^2.32.0",
"prettier": "^3.8.3",
"vitest": "^4.1.8"
}
}