microsoft/TypeAgent

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
8ba3ebd84dd1bb6343ebae028996313cabd70764

Branches

Tags

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

Clone

HTTPS

Download ZIP

ts/examples/cacheRESTEndpoint/package.json

53lines · modecode

1{
2 "name": "cache-rest-endpoint",
3 "version": "0.0.1",
4 "description": "AgentCache REST endpoint.",
5 "homepage": "https://github.com/microsoft/TypeAgent#readme",
6 "repository": {
7 "type": "git",
8 "url": "https://github.com/microsoft/TypeAgent.git",
9 "directory": "ts/examples/cacheRESTEndpoint"
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 "action-schema": "workspace:*",
26 "agent-cache": "workspace:*",
27 "agent-dispatcher": "workspace:*",
28 "agent-rpc": "workspace:*",
29 "aiclient": "workspace:*",
30 "body-parser": "1.20.3",
31 "chalk": "^5.4.1",
32 "common-utils": "workspace:*",
33 "debug": "^4.4.0",
34 "default-agent-provider": "workspace:*",
35 "dotenv": "^16.3.1",
36 "express": "^4.21.2",
37 "find-config": "^1.0.0",
38 "telemetry": "workspace:*",
39 "typeagent": "workspace:*"
40 },
41 "devDependencies": {
42 "@types/debug": "^4.1.12",
43 "@types/express": "^4.17.17",
44 "@types/find-config": "1.0.4",
45 "@types/jest": "^29.5.7",
46 "@types/ws": "^8.5.10",
47 "jest": "^29.7.0",
48 "prettier": "^3.5.3",
49 "rimraf": "^6.0.1",
50 "ts-loader": "^9.5.1",
51 "typescript": "~5.4.5"
52 }
53}
54