@cryptiklemur/lattice 1.27.0 → 1.27.1
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/bin/lattice +15 -0
- package/package.json +2 -2
package/bin/lattice
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
#!/usr/bin/env bash
|
|
2
|
+
set -e
|
|
3
|
+
|
|
4
|
+
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
5
|
+
ENTRY="$SCRIPT_DIR/../server/src/index.ts"
|
|
6
|
+
|
|
7
|
+
if command -v bun >/dev/null 2>&1; then
|
|
8
|
+
exec bun "$ENTRY" "$@"
|
|
9
|
+
else
|
|
10
|
+
echo "[lattice] Error: bun is required to run lattice from npm."
|
|
11
|
+
echo "[lattice] Install bun: https://bun.sh"
|
|
12
|
+
echo "[lattice] Or download a standalone binary from:"
|
|
13
|
+
echo "[lattice] https://github.com/cryptiklemur/lattice/releases"
|
|
14
|
+
exit 1
|
|
15
|
+
fi
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cryptiklemur/lattice",
|
|
3
|
-
"version": "1.27.
|
|
3
|
+
"version": "1.27.1",
|
|
4
4
|
"description": "Multi-machine agentic dashboard for Claude Code. Monitor sessions, manage MCP servers and skills, orchestrate across mesh-networked nodes.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Aaron Scherer <me@aaronscherer.me>",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"lattice"
|
|
24
24
|
],
|
|
25
25
|
"bin": {
|
|
26
|
-
"lattice": "./
|
|
26
|
+
"lattice": "./bin/lattice"
|
|
27
27
|
},
|
|
28
28
|
"scripts": {
|
|
29
29
|
"dev": "bun run --filter '*' dev",
|