-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.19 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.19 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
{
"name": "clawlet",
"version": "0.8.0",
"description": "A lightweight AI based personal assistant.",
"main": "src/cli.ts",
"type": "module",
"bin": {
"clawlet": "./bin/clawlet.js"
},
"files": [
"bin/",
"src/",
"template/"
],
"scripts": {
"start": "tsx src/cli.ts",
"test": "vitest run",
"small-test": "vitest run -t 'knowledge'"
},
"keywords": [
"ai",
"assistant",
"agent",
"cli",
"personal-assistant"
],
"author": "DracoBlue <JanS@DracoBlue.de>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DracoBlue/clawlet.git"
},
"dependencies": {
"@ai-sdk-tool/parser": "^3.3.2",
"@ai-sdk/openai": "^1.3.22",
"@ai-sdk/openai-compatible": "^2.0.28",
"@ai-sdk/provider": "^3.0.8",
"@libsql/client": "^0.17.0",
"@vitest/coverage-v8": "^4.0.18",
"ai": "^6.0.58",
"dotenv": "^17.2.2",
"grammy": "^1.39.3",
"pino": "^10.3.1",
"tsx": "^4.21.0",
"turndown": "^7.2.2",
"unstorage": "^1.17.4",
"vitest": "^4.0.18",
"yaml": "^2.8.2"
},
"devDependencies": {
"@types/node": "^25.2.1",
"@types/turndown": "^5.0.6",
"typescript": "^5.9.3"
}
}