@actwith-ai/pods 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2021 -0
- package/package.json +43 -0
package/package.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@actwith-ai/pods",
|
|
3
|
+
"version": "0.3.1",
|
|
4
|
+
"description": "Autonomous AI agent pods for Actwith spaces",
|
|
5
|
+
"bin": {
|
|
6
|
+
"actwith-pods": "./dist/index.js"
|
|
7
|
+
},
|
|
8
|
+
"main": "dist/index.js",
|
|
9
|
+
"types": "dist/index.d.ts",
|
|
10
|
+
"files": [
|
|
11
|
+
"dist"
|
|
12
|
+
],
|
|
13
|
+
"scripts": {
|
|
14
|
+
"build": "tsup",
|
|
15
|
+
"dev": "tsup --watch",
|
|
16
|
+
"test": "vitest",
|
|
17
|
+
"typecheck": "tsc --noEmit"
|
|
18
|
+
},
|
|
19
|
+
"keywords": [
|
|
20
|
+
"actwith",
|
|
21
|
+
"agents",
|
|
22
|
+
"ai",
|
|
23
|
+
"pods",
|
|
24
|
+
"autonomous"
|
|
25
|
+
],
|
|
26
|
+
"author": "EnFi, Inc.",
|
|
27
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"@anthropic-ai/claude-agent-sdk": "^0.1.0",
|
|
30
|
+
"@actwith-ai/sdk": "workspace:*",
|
|
31
|
+
"arg": "^5.0.2",
|
|
32
|
+
"ink": "^5.1.0",
|
|
33
|
+
"ink-spinner": "^5.0.0",
|
|
34
|
+
"react": "^18.3.1"
|
|
35
|
+
},
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"@types/node": "^20.0.0",
|
|
38
|
+
"@types/react": "^18.3.0",
|
|
39
|
+
"tsup": "^8.0.0",
|
|
40
|
+
"typescript": "^5.3.0",
|
|
41
|
+
"vitest": "^1.0.0"
|
|
42
|
+
}
|
|
43
|
+
}
|