{ "name": "agent-cli", "version": "0.0.1", "private": true, "description": "TypeAgent Dispatcher CLI", "homepage": "https://github.com/microsoft/TypeAgent#readme", "repository": { "type": "git", "url": "https://github.com/microsoft/TypeAgent.git", "directory": "ts/packages/cli" }, "license": "MIT", "author": "Microsoft", "type": "module", "main": "", "bin": { "agent-cli": "./bin/run.js", "agent-cli-dev": "./bin/dev.js" }, "scripts": { "build": "npm run tsc", "clean": "rimraf --glob dist *.tsbuildinfo *.done.build.log", "jest-esm": "node --experimental-vm-modules ./node_modules/.bin/jest", "prettier": "prettier --check . --ignore-path ../../.prettierignore", "prettier:fix": "prettier --write . --ignore-path ../../.prettierignore", "regen": "node ./bin/run.js data regenerate ../defaultAgentProvider/test/data/explanations/**/**/*.json", "regen:builtin": "node ./bin/run.js data regenerate --builtin v5", "start": "node ./bin/run.js", "start:dev": "node --loader ts-node/esm --no-warnings=ExperimentalWarning ./bin/dev.js", "stat": "node ./bin/run.js data stat -f ../defaultAgentProvider/test/data/explanations/**/**/*.json", "test": "npm run build && jest", "tsc": "tsc -b" }, "oclif": { "bin": "agent-cli", "commands": "./dist/commands", "default": "connect", "dirname": "agent-cli", "plugins": [ "@oclif/plugin-help" ], "topicSeparator": " ", "topics": { "conversations": { "description": "Manage agent server conversations (create, list, rename, delete)." }, "run": { "description": "Run the handler directly. Same as @ in interactive mode." } } }, "dependencies": { "@oclif/core": "^4.8.0", "@oclif/plugin-help": "^6", "@typeagent/action-grammar": "workspace:*", "@typeagent/action-schema": "workspace:*", "@typeagent/agent-sdk": "workspace:*", "@typeagent/agent-server-client": "workspace:*", "@typeagent/aiclient": "workspace:*", "@typeagent/common-utils": "workspace:*", "@typeagent/config": "workspace:*", "@typeagent/dispatcher-types": "workspace:*", "agent-cache": "workspace:*", "agent-dispatcher": "workspace:*", "chalk": "^5.4.1", "debug": "^4.4.0", "default-agent-provider": "workspace:*", "dotenv": "^16.3.1", "html-to-text": "^9.0.5", "interactive-app": "workspace:*", "marked": "^15.0.0", "marked-terminal": "^7.3.0", "open": "^10.1.0", "telemetry": "workspace:*", "ts-node": "^10.9.1", "typechat-utils": "workspace:*" }, "devDependencies": { "@jest/globals": "^29.7.0", "@types/debug": "^4.1.12", "@types/html-to-text": "^9.0.4", "@types/jest": "^29.5.7", "jest": "^29.7.0", "prettier": "^3.5.3", "rimraf": "^6.0.1", "ts-jest": "^29.4.9", "typescript": "~5.4.5" } }