-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 950 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 950 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
42
43
44
45
46
47
{
"name": "@fullstackhouse/agentloop",
"version": "0.7.5",
"description": "AI agent that monitors chat platforms and responds using Claude Code",
"repository": {
"type": "git",
"url": "git+https://github.com/fullstackhouse/agentloop.git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"type": "module",
"engines": {
"node": ">=22"
},
"bin": {
"agentloop": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "tsx src/cli.ts serve",
"build": "tsc",
"start": "node dist/cli.js serve",
"prepublishOnly": "npm run build",
"test:e2e": "tsx tests/e2e.ts"
},
"keywords": [
"ai",
"agent",
"claude",
"slack",
"mcp"
],
"license": "MIT",
"dependencies": {
"dotenv": "^16.4.7",
"slackify-markdown": "^5.0.0"
},
"devDependencies": {
"@types/node": "^22.13.14",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
}
}