@letta-ai/letta-code 0.1.0 → 0.1.2

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.
Files changed (2) hide show
  1. package/bin/letta +0 -0
  2. package/package.json +4 -4
package/bin/letta CHANGED
Binary file
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@letta-ai/letta-code",
3
- "version": "0.1.0",
4
- "description": "Letta Code CLI for interacting with Letta agents from the terminal.",
3
+ "version": "0.1.2",
4
+ "description": "Letta Code is a CLI tool for interacting with stateful Letta agents from the terminal.",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "letta": "bin/letta"
@@ -41,8 +41,8 @@
41
41
  "scripts": {
42
42
  "lint": "biome check src",
43
43
  "fix": "biome check --write src",
44
- "dev:ui": "bun run src/index.ts",
45
- "build": "bun build src/index.ts --compile --outfile bin/letta",
44
+ "dev:ui": "bun --loader:.md=text --loader:.mdx=text --loader:.txt=text run src/index.ts",
45
+ "build": "bun build src/index.ts --compile --loader:.md=text --loader:.mdx=text --loader:.txt=text --outfile bin/letta",
46
46
  "prepublishOnly": "bun run build",
47
47
  "postinstall": "bun scripts/postinstall-patches.js || true"
48
48
  },