-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.54 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.54 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
{
"name": "macroclaw",
"version": "0.0.0-dev",
"description": "Telegram-to-Claude-Code bridge",
"license": "MIT",
"type": "module",
"bin": {
"macroclaw": "./bin/macroclaw.js"
},
"files": [
"bin/",
"src/",
"workspace-template/"
],
"repository": {
"type": "git",
"url": "https://github.com/macrosak/macroclaw"
},
"scripts": {
"start": "bun run src/main.ts",
"dev": "bun run --watch src/main.ts",
"check": "tsc --noEmit && biome check && bun test && bun run depcheck",
"depcheck": "depcruise src --config .dependency-cruiser.json --output-type err",
"typecheck": "tsc --noEmit",
"lint": "biome check",
"lint:fix": "biome check --fix --unsafe",
"test": "bun test",
"test:integration": "bun test src/*.integration-test.ts --timeout 120000",
"claude": "set -a && . ./.env && set +a && cd ${WORKSPACE:-~/.macroclaw-workspace} && claude --resume $(node -p \"require('$HOME/.macroclaw/settings.json').sessionId\") --model ${MODEL:-sonnet}",
"postinstall": "lefthook install || true"
},
"dependencies": {
"citty": "^0.2.1",
"cron-parser": "^5.5.0",
"grammy": "^1.39.3",
"luxon": "^3.7.2",
"openai": "^6.27.0",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"pinorama-client": "^0.3.0",
"pinorama-transport": "^0.1.4",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@types/luxon": "^3.7.1",
"bun-types": "^1.3.10",
"dependency-cruiser": "^17.3.8",
"lefthook": "^2.1.4",
"typescript": "^5.9.3"
}
}