-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 835 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 835 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
38
39
40
41
{
"name": "clawdbios",
"version": "0.3.0",
"description": "ClawdBIOS — the firmware layer for autonomous agents, in your terminal. Create agents, load a character, and chat with them. Boot. Verify. Execute.",
"type": "module",
"bin": {
"clawdbios": "src/index.mjs"
},
"files": [
"src",
"README.md"
],
"engines": {
"node": ">=18"
},
"scripts": {
"start": "node src/index.mjs"
},
"keywords": [
"clawdbios",
"clawdos",
"cli",
"agent",
"ai",
"firmware",
"base",
"fal",
"claude"
],
"license": "MIT",
"homepage": "https://clawdbios.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/clawdosdev/clawdbios-cli.git"
},
"author": "clawdosdev",
"dependencies": {
"@fal-ai/client": "^1.2.1",
"chalk": "^5.3.0"
}
}