-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.21 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.21 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
{
"name": "smolerclaw",
"version": "1.9.0",
"description": "Micro AI assistant for tiny machines. Inspired by OpenClaw.",
"type": "module",
"bin": {
"smolerclaw": "dist/index.js"
},
"scripts": {
"start": "bun run src/index.ts",
"dev": "bun --watch src/index.ts",
"build": "node scripts/build.mjs",
"compile": "node scripts/compile.mjs",
"typecheck": "tsc --noEmit",
"test": "bun test",
"prepublishOnly": "node scripts/build.mjs"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.80.0",
"@googleworkspace/cli": "^0.22.0",
"@pnp/cli-microsoft365": "^11.6.0",
"hono": "^4.6.0"
},
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ktfth/smolerclaw.git"
},
"keywords": [
"ai",
"assistant",
"cli",
"tui",
"web",
"desktop",
"anthropic",
"claude",
"terminal",
"productivity",
"business",
"finance",
"calendar",
"outlook",
"gmail",
"google-workspace",
"drive",
"windows",
"plugins",
"bun",
"typescript",
"hono"
],
"license": "MIT",
"devDependencies": {
"bun-types": "^1.3.11",
"typescript": "^5.9.3"
}
}