microsoft/TypeAgent

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
fc60b72728f7e5d22518f56ae281a4d8bfcd228e

Branches

Tags

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

Clone

HTTPS

Download ZIP

ts/packages/api/package.json

59lines · modecode

1{
2 "name": "agent-api",
3 "version": "0.0.1",
4 "private": true,
5 "description": "TypeAgent API",
6 "homepage": "https://github.com/microsoft/TypeAgent#readme",
7 "repository": {
8 "type": "git",
9 "url": "https://github.com/microsoft/TypeAgent.git",
10 "directory": "ts/packages/api"
11 },
12 "license": "MIT",
13 "author": "Microsoft",
14 "type": "module",
15 "main": "./dist/index.js",
16 "scripts": {
17 "build": "npm run tsc",
18 "clean": "rimraf --glob dist *.tsbuildinfo *.done.build.log",
19 "prettier": "prettier --check . --ignore-path ../../.prettierignore",
20 "prettier:fix": "prettier --write . --ignore-path ../../.prettierignore",
21 "start": "node ./dist/index.js",
22 "test": "npm run test:local",
23 "test:local": "node --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js --testPathPattern=\".*\\.spec\\.js\"",
24 "test:local:debug": "node --inspect-brk --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js --testPathPattern=\".*\\.spec\\.js\"",
25 "tsc": "tsc -b"
26 },
27 "dependencies": {
28 "@aws-sdk/client-s3": "^3.726.0",
29 "@aws-sdk/lib-storage": "^3.726.0",
30 "@azure/identity": "^4.9.1",
31 "@azure/storage-blob": "^12.26.0",
32 "@typeagent/agent-rpc": "workspace:*",
33 "@typeagent/agent-sdk": "workspace:*",
34 "@typeagent/dispatcher-rpc": "workspace:*",
35 "agent-cache": "workspace:*",
36 "agent-dispatcher": "workspace:*",
37 "aiclient": "workspace:*",
38 "chalk": "^5.4.1",
39 "debug": "^4.4.0",
40 "default-agent-provider": "workspace:*",
41 "dispatcher-node-providers": "workspace:*",
42 "dotenv": "^16.3.1",
43 "find-config": "^1.0.0",
44 "telemetry": "workspace:*",
45 "typeagent": "workspace:*",
46 "typechat-utils": "workspace:*",
47 "ws": "^8.17.1"
48 },
49 "devDependencies": {
50 "@types/debug": "^4.1.12",
51 "@types/find-config": "1.0.4",
52 "@types/jest": "^29.5.7",
53 "@types/ws": "^8.5.10",
54 "jest": "^29.7.0",
55 "prettier": "^3.5.3",
56 "rimraf": "^6.0.1",
57 "typescript": "~5.4.5"
58 }
59}
60