UNPKG

@robota-sdk/sessions

Version:

Session and chat management for Robota SDK - multi-session support with independent workspaces

89 lines 2.13 kB
{ "name": "@robota-sdk/sessions", "version": "1.0.3", "description": "Session and chat management for Robota SDK - multi-session support with independent workspaces", "type": "module", "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.js" } }, "repository": { "type": "git", "url": "https://github.com/woojubb/robota.git", "directory": "packages/sessions" }, "homepage": "https://robota.io/", "bugs": { "url": "https://github.com/woojubb/robota/issues" }, "files": [ "dist", "README.md", "CHANGELOG.md" ], "keywords": [ "ai", "agent", "llm", "session-management", "multi-session", "chat-management", "chat-switching", "conversation-history", "session-lifecycle", "memory-optimization", "configuration-management", "runtime-configuration", "typescript", "robota", "sdk", "openai", "anthropic", "google-ai", "ai-integration" ], "author": "Robota SDK Team", "license": "MIT", "engines": { "node": ">=18.0.0" }, "dependencies": { "uuid": "^9.0.1" }, "peerDependencies": { "@robota-sdk/tools": "1.0.3", "@robota-sdk/core": "1.0.3" }, "devDependencies": { "@types/uuid": "^9.0.7", "rimraf": "^5.0.5", "tsup": "^8.0.1", "typescript": "^5.3.3", "vitest": "^1.6.1", "eslint": "^8.56.0", "@robota-sdk/core": "1.0.3", "@robota-sdk/tools": "1.0.3" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "scripts": { "build": "tsup", "build:check": "pnpm run typecheck && pnpm run build", "dev": "tsup --watch", "clean": "rimraf dist && rimraf tsconfig.tsbuildinfo", "typecheck": "tsc --noEmit", "test": "vitest run --passWithNoTests", "test:watch": "vitest", "test:coverage": "vitest run --coverage", "lint": "eslint src --ext .ts,.tsx", "lint:fix": "eslint src --ext .ts,.tsx --fix" } }