83 lines
2.2 KiB
JSON
83 lines
2.2 KiB
JSON
{
|
|
"name": "@letta-ai/letta-code",
|
|
"version": "0.18.2",
|
|
"description": "Letta Code is a CLI tool for interacting with stateful Letta agents from the terminal.",
|
|
"type": "module",
|
|
"bin": {
|
|
"letta": "letta.js"
|
|
},
|
|
"files": [
|
|
"LICENSE",
|
|
"README.md",
|
|
"letta.js",
|
|
"scripts",
|
|
"skills",
|
|
"vendor",
|
|
"dist/types"
|
|
],
|
|
"exports": {
|
|
".": "./letta.js",
|
|
"./protocol": {
|
|
"types": "./dist/types/protocol.d.ts"
|
|
}
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/letta-ai/letta-code.git"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"dependencies": {
|
|
"@letta-ai/letta-client": "^1.7.12",
|
|
"glob": "^13.0.0",
|
|
"highlight.js": "^11.11.1",
|
|
"ink-link": "^5.0.0",
|
|
"lowlight": "^3.3.0",
|
|
"open": "^10.2.0",
|
|
"sharp": "^0.34.5",
|
|
"ws": "^8.19.0"
|
|
},
|
|
"optionalDependencies": {
|
|
"@vscode/ripgrep": "^1.17.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "^1.3.7",
|
|
"@types/diff": "^8.0.0",
|
|
"@types/picomatch": "^4.0.2",
|
|
"@types/react": "^19.2.9",
|
|
"@types/ws": "^8.18.1",
|
|
"diff": "^8.0.2",
|
|
"husky": "9.1.7",
|
|
"ink": "^5.0.0",
|
|
"ink-spinner": "^5.0.0",
|
|
"ink-text-input": "^5.0.0",
|
|
"lint-staged": "16.2.4",
|
|
"minimatch": "^10.0.3",
|
|
"picomatch": "^2.3.1",
|
|
"react": "18.2.0",
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"scripts": {
|
|
"lint": "bunx --bun @biomejs/biome@2.2.5 check src",
|
|
"fix": "bunx --bun @biomejs/biome@2.2.5 check --write src",
|
|
"typecheck": "tsc --noEmit",
|
|
"check": "bun run scripts/check.js",
|
|
"dev": "bun --loader:.md=text --loader:.mdx=text --loader:.txt=text run src/index.ts",
|
|
"build": "node scripts/postinstall-patches.js && bun run build.js",
|
|
"test:update-chain:manual": "bun run src/tests/update-chain-smoke.ts --mode manual",
|
|
"test:update-chain:startup": "bun run src/tests/update-chain-smoke.ts --mode startup",
|
|
"prepublishOnly": "bun run build",
|
|
"postinstall": "node scripts/postinstall-patches.js || echo letta: vendor patches skipped"
|
|
},
|
|
"lint-staged": {
|
|
"*.{ts,tsx,js,jsx,json}": [
|
|
"bunx --bun @biomejs/biome@2.2.5 check --write"
|
|
]
|
|
}
|
|
}
|