microsoft/TypeAgent
Publicmirrored fromhttps://github.com/microsoft/TypeAgentAvailable
ts/packages/cli/package.json
70lines · modecode
| 1 | { |
| 2 | "name": "agent-cli", |
| 3 | "version": "0.0.1", |
| 4 | "description": "TypeAgent Dispatcher CLI", |
| 5 | "homepage": "https://github.com/microsoft/TypeAgent#readme", |
| 6 | "repository": { |
| 7 | "type": "git", |
| 8 | "url": "https://github.com/microsoft/TypeAgent.git", |
| 9 | "directory": "ts/packages/cli" |
| 10 | }, |
| 11 | "license": "MIT", |
| 12 | "author": "Microsoft", |
| 13 | "type": "module", |
| 14 | "main": "", |
| 15 | "bin": { |
| 16 | "agent-cli": "./bin/run.js", |
| 17 | "agent-cli-dev": "./bin/dev.js" |
| 18 | }, |
| 19 | "scripts": { |
| 20 | "build": "npm run tsc", |
| 21 | "clean": "rimraf --glob dist *.tsbuildinfo *.done.build.log", |
| 22 | "prettier": "prettier --check . --ignore-path ../../.prettierignore", |
| 23 | "prettier:fix": "prettier --write . --ignore-path ../../.prettierignore", |
| 24 | "regen": "node ./bin/run.js data regenerate ../defaultAgentProvider/test/data/explanations/**/**/*.json", |
| 25 | "regen:builtin": "node ./bin/run.js data regenerate --builtin v5", |
| 26 | "start": "node ./bin/run.js", |
| 27 | "start:dev": "node --loader ts-node/esm --no-warnings=ExperimentalWarning ./bin/dev.js", |
| 28 | "stat": "node ./bin/run.js data stat -f ../defaultAgentProvider/test/data/explanations/**/**/*.json", |
| 29 | "tsc": "tsc -b" |
| 30 | }, |
| 31 | "oclif": { |
| 32 | "bin": "agent-cli", |
| 33 | "commands": "./dist/commands", |
| 34 | "dirname": "agent-cli", |
| 35 | "plugins": [ |
| 36 | "@oclif/plugin-help" |
| 37 | ], |
| 38 | "topicSeparator": " ", |
| 39 | "topics": { |
| 40 | "run": { |
| 41 | "description": "Run the handler directly. Same as @<command> in interactive mode." |
| 42 | } |
| 43 | } |
| 44 | }, |
| 45 | "dependencies": { |
| 46 | "@oclif/core": "^4.2.10", |
| 47 | "@oclif/plugin-help": "^5", |
| 48 | "@typeagent/agent-sdk": "workspace:*", |
| 49 | "action-schema": "workspace:*", |
| 50 | "agent-cache": "workspace:*", |
| 51 | "agent-dispatcher": "workspace:*", |
| 52 | "aiclient": "workspace:*", |
| 53 | "chalk": "^5.4.1", |
| 54 | "common-utils": "workspace:*", |
| 55 | "debug": "^4.4.0", |
| 56 | "default-agent-provider": "workspace:*", |
| 57 | "dotenv": "^16.3.1", |
| 58 | "open": "^10.1.0", |
| 59 | "ts-node": "^10.9.1", |
| 60 | "typechat": "^0.1.1" |
| 61 | }, |
| 62 | "devDependencies": { |
| 63 | "@types/debug": "^4.1.12", |
| 64 | "@types/jest": "^29.5.7", |
| 65 | "jest": "^29.7.0", |
| 66 | "prettier": "^3.5.3", |
| 67 | "rimraf": "^6.0.1", |
| 68 | "typescript": "^5.4.2" |
| 69 | } |
| 70 | } |
| 71 | |