microsoft/TypeAgent

Public

mirrored from https://github.com/microsoft/TypeAgentAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
ec1a127c43e511cfaf5bdb778f936623a42ef74b

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

ts/packages/cli/package.json

66lines · 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": "./bin/dev.js data regenerate -f ../dispatcher/test/data/**/**/*.json ../dispatcher/test/repo/explanations/**/**/*.json",
25 "regen:builtin": "./bin/dev.js data regenerate --builtin player",
26 "start": "npx --no .",
27 "start:dev": "npx --no agent-cli-dev",
28 "stat": "./bin/dev.js data stat -f ../dispatcher/test/data/**/**/*.json ../dispatcher/test/repo/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": "^3",
47 "@oclif/plugin-help": "^5",
48 "agent-cache": "workspace:*",
49 "agent-dispatcher": "workspace:*",
50 "chalk": "^5.3.0",
51 "common-utils": "workspace:*",
52 "debug": "^4.3.4",
53 "dotenv": "^16.3.1",
54 "rimraf": "^5.0.5",
55 "ts-node": "^10.9.1",
56 "typechat": "^0.1.0"
57 },
58 "devDependencies": {
59 "@types/debug": "^4.1.10",
60 "@types/jest": "^29.5.7",
61 "@types/node": "^18.18.7",
62 "jest": "^29.7.0",
63 "prettier": "^3.2.5",
64 "typescript": "^5.4.2"
65 }
66}
67