-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 773 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 773 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
{
"name": "miniclaw",
"version": "1.0.0",
"description": "Personal AI assistant inspired by OpenClaw - Discord bot with memory, calendar, and skill building",
"type": "module",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"watch": "node watchdog.js",
"auth": "node auth-server.js"
},
"keywords": [
"ai",
"assistant",
"discord",
"claude",
"anthropic"
],
"author": "Rob",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.32.0",
"@discordjs/opus": "^0.10.0",
"@discordjs/voice": "^0.19.1",
"@google/genai": "^1.41.0",
"better-sqlite3": "^11.7.0",
"discord.js": "^14.17.0",
"dotenv": "^16.4.7",
"googleapis": "^144.0.0",
"puppeteer": "^24.40.0"
}
}