-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.57 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
55
56
57
58
59
60
61
62
63
64
{
"name": "tinyclaw",
"version": "0.2.0",
"description": "A minimal AI coding agent extracted from OpenClaw",
"type": "module",
"bin": {
"tinyclaw": "dist/cli/cli.mjs"
},
"main": "dist/index.mjs",
"types": "dist/index.d.mts",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"build": "tsdown",
"dev": "tsx src/cli/cli.ts",
"start": "node dist/cli/cli.mjs",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@inquirer/prompts": "^7.10.1",
"@mariozechner/pi-agent-core": "0.52.8",
"@mariozechner/pi-ai": "0.52.8",
"@mariozechner/pi-coding-agent": "0.52.8",
"@mariozechner/pi-tui": "^0.52.8",
"@slack/bolt": "^4.6.0",
"@slack/web-api": "^7.13.0",
"better-sqlite3": "^12.6.2",
"chalk": "^5.4.1",
"commander": "^13.1.0",
"discord.js": "^14.25.1",
"grammy": "^1.39.3",
"json5": "^2.2.3",
"ws": "^8.19.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.13.4",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^3.0.0",
"tsdown": "^0.20.3",
"tsx": "^4.19.3",
"typescript": "^5.7.3",
"vitest": "^3.0.0"
},
"optionalDependencies": {
"playwright-core": "^1.50.0",
"sharp": "^0.33.0",
"edge-tts": "^1.0.0",
"sqlite-vec": "^0.1.0"
},
"overrides": {
"undici@6": "6.23.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mrcloudchase/tinyclaw.git"
}
}