microsoft/TypeAgent

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
a3694ef9cffd2f587c8d3fdd92162f3192a79db0

Branches

Tags

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

Clone

HTTPS

Download ZIP

ts/packages/api/package.json

48lines · modecode

1{
2 "name": "agent-api",
3 "version": "0.0.1",
4 "description": "TypeAgent API",
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/api"
10 },
11 "license": "MIT",
12 "author": "Microsoft",
13 "type": "module",
14 "main": "./dist/index.js",
15 "scripts": {
16 "build": "npm run tsc",
17 "clean": "rimraf --glob dist *.tsbuildinfo *.done.build.log",
18 "prettier": "prettier --check . --ignore-path ../../.prettierignore",
19 "prettier:fix": "prettier --write . --ignore-path ../../.prettierignore",
20 "start": "node ./dist/index.js",
21 "tsc": "tsc -b"
22 },
23 "dependencies": {
24 "@typeagent/agent-sdk": "workspace:*",
25 "agent-cache": "workspace:*",
26 "agent-dispatcher": "workspace:*",
27 "aiclient": "workspace:*",
28 "chalk": "^5.3.0",
29 "common-utils": "workspace:*",
30 "debug": "^4.3.4",
31 "dotenv": "^16.3.1",
32 "node-http": "0.0.5",
33 "rimraf": "^5.0.5",
34 "ts-node": "^10.9.1",
35 "typechat": "^0.1.1",
36 "typescript": "^5.4.3",
37 "ws": "^8.17.1"
38 },
39 "devDependencies": {
40 "@types/debug": "^4.1.10",
41 "@types/jest": "^29.5.7",
42 "@types/node": "^18.18.7",
43 "@types/ws": "^8.5.10",
44 "jest": "^29.7.0",
45 "prettier": "^3.2.5",
46 "typescript": "^5.4.3"
47 }
48}
49