Files
letta-code-sdk/package.json
Cameron 0a298c4ef1 chore: bump version to 0.1.13
Includes letta-code 0.19.3 dependency (from #86) which contains the
headless auto-deny fix for approval recovery (letta-code#1415).

Written by Cameron ◯ Letta Code

"Ship the fix, then ship the cleanup."
2026-03-19 09:23:59 -06:00

43 lines
1.0 KiB
JSON

{
"name": "@letta-ai/letta-code-sdk",
"version": "0.1.13",
"description": "SDK for programmatic control of Letta Code CLI",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "bun run build.ts",
"dev": "bun run build.ts --watch",
"check": "tsc --noEmit",
"test": "bun test",
"test:live": "LETTA_LIVE_INTEGRATION=1 bun test src/tests/live.integration.test.ts",
"test:live:record": "LETTA_LIVE_INTEGRATION=1 LETTA_RECORD_FIXTURES=1 bun test src/tests/live.integration.test.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/letta-ai/letta-code-sdk"
},
"dependencies": {
"@letta-ai/letta-code": "0.19.3"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^22.0.0",
"typescript": "^5.7.0"
},
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0"
}