hatchee 0.1.7 → 0.3.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/dist/cli.mjs +7819 -7194
- package/package.json +18 -5
package/package.json
CHANGED
|
@@ -1,18 +1,31 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hatchee",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Your coding agents, alive on your iPhone lock screen — Hatchee daemon. Approve Claude Code / Codex from your phone.",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"bin": {
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
"bin": {
|
|
7
|
+
"hatchee": "dist/cli.mjs"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"engines": {
|
|
13
|
+
"node": ">=18"
|
|
14
|
+
},
|
|
9
15
|
"scripts": {
|
|
10
16
|
"build": "bun run build.ts",
|
|
11
17
|
"prepublishOnly": "bun run build.ts",
|
|
12
18
|
"dev": "bun run src/cli.ts up",
|
|
13
19
|
"test": "bun test"
|
|
14
20
|
},
|
|
15
|
-
"keywords": [
|
|
21
|
+
"keywords": [
|
|
22
|
+
"claude-code",
|
|
23
|
+
"ssh",
|
|
24
|
+
"agent",
|
|
25
|
+
"remote",
|
|
26
|
+
"approval",
|
|
27
|
+
"revenuecat"
|
|
28
|
+
],
|
|
16
29
|
"license": "MIT",
|
|
17
30
|
"//": "all deps are inlined into dist/cli.mjs by build.ts, so the published package has zero runtime deps — `npx hatchee` downloads one file. @drover/protocol is type-only (erased at build) so it isn't listed; npm would reject its workspace: protocol.",
|
|
18
31
|
"repository": "github:aiplus/hatchee",
|