-
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) · 987 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 987 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
35
36
37
38
39
40
{
"name": "kid-cal",
"version": "1.0.0",
"description": "School email → calendar + SMS reminder daemon",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@anthropic-ai/sdk": "^0.73.0",
"better-sqlite3": "^12.6.2",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"dotenv": "^17.2.3",
"googleapis": "^171.3.0",
"html-to-text": "^9.0.5",
"imapflow": "^1.2.8",
"mailparser": "^3.9.3",
"pino": "^10.3.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/html-to-text": "^9.0.4",
"@types/mailparser": "^3.4.6",
"@types/node": "^25.2.1",
"@vitest/coverage-v8": "^4.0.18",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}