-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 772 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 772 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
{
"name": "shareabot-agent",
"version": "0.2.1",
"description": "Share a Bot agent runtime — turn your AI into a freelance business",
"type": "module",
"bin": {
"shareabot-agent": "dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli/index.js start"
},
"keywords": [
"ai",
"agent",
"shareabot",
"freelance"
],
"author": "Share a Bot",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.80.0",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"dotenv": "^17.3.1",
"ws": "^8.19.0",
"yaml": "^2.8.2"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/ws": "^8.18.1",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}