microsoft/TypeAgent

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
0e14bf1757edbf3f99d30f3f5d91a032e9d8c4ec

Branches

Tags

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

Clone

HTTPS

Download ZIP

ts/packages/api/package.json

61lines · 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 "test": "node --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js --testPathPattern=\".*\\.spec\\.js\"",
22 "test:debug": "node --inspect-brk --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js --testPathPattern=\".*\\.spec\\.js\"",
23 "test:full": "node --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js",
24 "tsc": "tsc -b"
25 },
26 "dependencies": {
27 "@aws-sdk/client-s3": "^3.726.0",
28 "@aws-sdk/lib-storage": "^3.726.0",
29 "@azure/identity": "4.2.1",
30 "@azure/storage-blob": "^12.26.0",
31 "@typeagent/agent-sdk": "workspace:*",
32 "agent-cache": "workspace:*",
33 "agent-dispatcher": "workspace:*",
34 "agent-rpc": "workspace:*",
35 "aiclient": "workspace:*",
36 "chalk": "^5.3.0",
37 "common-utils": "workspace:*",
38 "debug": "^4.3.4",
39 "default-agent-provider": "workspace:*",
40 "dotenv": "^16.3.1",
41 "find-config": "^1.0.0",
42 "node-http": "0.0.5",
43 "rimraf": "^5.0.5",
44 "telemetry": "workspace:*",
45 "ts-node": "^10.9.1",
46 "typeagent": "workspace:*",
47 "typechat": "^0.1.1",
48 "typescript": "^5.4.3",
49 "ws": "^8.17.1"
50 },
51 "devDependencies": {
52 "@types/debug": "^4.1.10",
53 "@types/find-config": "1.0.4",
54 "@types/jest": "^29.5.7",
55 "@types/node": "^18.18.7",
56 "@types/ws": "^8.5.10",
57 "jest": "^29.7.0",
58 "prettier": "^3.2.5",
59 "typescript": "^5.4.3"
60 }
61}