@robota-sdk/sessions
Version:
Session and chat management for Robota SDK - multi-session support with independent workspaces
93 lines • 2.26 kB
JSON
{
"name": "@robota-sdk/sessions",
"version": "2.0.9",
"description": "Session and chat management for Robota SDK - multi-session support with independent workspaces",
"type": "module",
"main": "dist/node/index.js",
"module": "dist/node/index.mjs",
"types": "dist/node/index.d.ts",
"exports": {
".": {
"types": "./dist/node/index.d.ts",
"node": {
"import": "./dist/node/index.js",
"require": "./dist/node/index.cjs"
},
"browser": {
"import": "./dist/browser/index.js"
},
"default": {
"import": "./dist/node/index.js",
"require": "./dist/node/index.cjs"
}
}
},
"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": {
"@robota-sdk/agents": "2.0.9"
},
"peerDependencies": {},
"devDependencies": {
"rimraf": "^5.0.5",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.6.1",
"eslint": "^8.56.0",
"@robota-sdk/agents": "2.0.9"
},
"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"
}
}