-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.71 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
62
63
64
65
66
67
68
69
{
"name": "@yonidavidson/agentcomm",
"version": "0.21.1",
"description": "A tiny mailbox/message bus for AI agents that shell out to one CLI. Pluggable storage backends behind a single Backend interface.",
"type": "module",
"license": "MIT",
"author": "yonidavidson",
"repository": {
"type": "git",
"url": "git+https://github.com/yonidavidson/agentcomm.git"
},
"keywords": [
"agents",
"message-bus",
"mailbox",
"cli",
"sqlite",
"ipc"
],
"bin": {
"agentcomm": "dist/cli.js"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"bin",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx src/cli.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e:up": "docker compose -f docker-compose.test.yml up -d --wait && bash test/e2e/setup.sh",
"test:e2e:down": "docker compose -f docker-compose.test.yml down -v",
"typecheck": "tsc -p tsconfig.json --noEmit",
"prepack": "npm run build",
"prepublishOnly": "npm run build",
"test:e2e:harness": "vitest run test/opencode.e2e.test.ts"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.0.0",
"@google-cloud/storage": "^7.0.0",
"@opencode-ai/plugin": "^1.17.18",
"@types/better-sqlite3": "^7.6.0",
"@types/node": "^22.0.0",
"@types/pg": "^8.11.0",
"better-sqlite3": "^11.0.0",
"pg": "^8.11.0",
"tsx": "^4.0.0",
"typescript": "^5.5.0",
"vitest": "^2.0.0",
"yaml": "^2.9.0"
}
}