-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.07 KB
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
{
"name": "cafe",
"version": "0.1.0",
"description": "Slack Random Coffee bot hosted locally with Docker, Node.js, and SQLite.",
"type": "module",
"private": true,
"license": "MIT",
"scripts": {
"dev": "tsx watch src/index.ts",
"dev:scheduling-ui": "tsx src/localSchedulingServer.ts",
"start": "node dist/index.js",
"build": "tsc -p tsconfig.json",
"test": "vitest run",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:watch": "vitest",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@earendil-works/pi-coding-agent": "^0.74.2",
"@slack/bolt": "^4.4.0",
"better-sqlite3": "^12.2.0",
"dotenv": "^17.2.3",
"googleapis": "^144.0.0",
"luxon": "^3.7.2",
"pino": "^10.1.0",
"typebox": "^1.1.39",
"zod": "^4.1.13"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/luxon": "^3.7.1",
"@types/node": "^24.10.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^4.0.14"
},
"engines": {
"node": ">=22"
}
}