-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 933 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 933 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
{
"name": "sessionmail",
"version": "0.2.1",
"description": "A local, paired mailbox for AI coding agents that can't otherwise reach each other.",
"type": "module",
"bin": {
"sessionmail": "dist/src/cli.js"
},
"files": [
"dist/src",
"skills",
".claude-plugin",
".codex-plugin"
],
"engines": {
"node": ">=22.14.0"
},
"scripts": {
"build": "tsc",
"test": "tsc && node --test dist/test/*.test.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"cli",
"ai-agents",
"claude-code",
"codex",
"sqlite"
],
"author": "August Cayzer",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/aicayzer/sessionmail.git"
},
"homepage": "https://github.com/aicayzer/sessionmail",
"dependencies": {
"commander": "^15.0.0"
},
"devDependencies": {
"@types/node": "^26.3.0",
"typescript": "^5.9.3"
}
}