-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.88 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.88 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "iron-claude",
"version": "1.0.0",
"description": "A Claude-powered personal fitness coach that lives in Telegram",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/src/server.js",
"dev": "tsx watch src/server.ts",
"setup": "tsx scripts/setup.ts",
"setup:integration": "tsx scripts/setup-integration.ts",
"setup:whoop": "tsx scripts/setup-integration.ts whoop",
"onboard": "tsx scripts/onboard.ts",
"set-webhook": "tsx scripts/set-webhook.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint src/ scripts/",
"lint:fix": "eslint src/ scripts/ --fix",
"format": "prettier --write \"src/**/*.ts\" \"scripts/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"scripts/**/*.ts\"",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest --testPathIgnorePatterns='/node_modules/' --testPathIgnorePatterns='/dist/' --testPathIgnorePatterns='tests/scenarios'",
"test:all": "NODE_OPTIONS='--experimental-vm-modules' jest",
"test:scenarios": "NODE_OPTIONS='--experimental-vm-modules' jest --testPathPatterns='tests/scenarios' --verbose"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.37",
"@google/genai": "^1.40.0",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"express": "^4.21.2"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@inquirer/prompts": "^7.10.1",
"@types/express": "^5.0.2",
"@types/jest": "^30.0.0",
"@types/node": "^22.19.7",
"boxen": "^8.0.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^30.2.0",
"knip": "^5.82.1",
"nanospinner": "^1.2.2",
"picocolors": "^1.1.1",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1"
},
"engines": {
"node": ">=20.0.0"
}
}