moonlait 0.1.0
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/LICENSE +21 -0
- package/README.md +47 -0
- package/dist/THIRD_PARTY_NOTICES.md +224 -0
- package/dist/cli.js +24376 -0
- package/dist/test-agent.js +23508 -0
- package/package.json +25 -0
package/package.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "moonlait",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Message the coding agents on your computer — Claude Code, Codex and Antigravity — from Moonlait on your phone.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "Jorge Bermudez Roldan",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"bin": {
|
|
9
|
+
"moonlait": "dist/cli.js"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"dist"
|
|
13
|
+
],
|
|
14
|
+
"engines": {
|
|
15
|
+
"node": ">=20"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"moonlait",
|
|
19
|
+
"claude-code",
|
|
20
|
+
"codex",
|
|
21
|
+
"antigravity",
|
|
22
|
+
"agent-client-protocol",
|
|
23
|
+
"bridge"
|
|
24
|
+
]
|
|
25
|
+
}
|