microsoft/TypeAgent

Public

mirrored fromhttps://github.com/microsoft/TypeAgentAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/remove-config-execution-script-reuse-command-handl

Branches

Tags

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

Clone

HTTPS

Download ZIP

ts/examples/cacheRESTEndpoint/package.json

54lines · modecode

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