-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1005 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1005 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
{
"name": "oak",
"version": "1.0.0",
"description": "A personal fitness coach, motivator, and food advisor you talk to on Telegram, powered by the Claude Agent SDK and backed by Notion.",
"type": "module",
"main": "dist/index.js",
"license": "MIT",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsc",
"start": "node --env-file-if-exists=.env dist/index.js",
"dev": "tsx --env-file=.env src/index.ts",
"lint": "biome check .",
"format": "biome format --write .",
"pretest": "tsc",
"test": "node --test scripts/*.test.mjs tests/*.test.mjs"
},
"overrides": {
"adm-zip": "^0.6.0"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "0.3.177",
"@huggingface/transformers": "^4.2.0",
"croner": "^10.0.1",
"ffmpeg-static": "^5.3.0",
"grammy": "^1.30.0",
"zod": "^4.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
}
}