microsoft/TypeAgent

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v0.1.8-py

Branches

Tags

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

Clone

HTTPS

Download ZIP

ts/packages/cache/package.json

54lines · modecode

1{
2 "name": "agent-cache",
3 "version": "0.0.1",
4 "description": "Construction cache for TypeAgent requests",
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/cache"
10 },
11 "license": "MIT",
12 "author": "Microsoft",
13 "type": "module",
14 "exports": {
15 ".": {
16 "node": "./dist/index.js",
17 "default": "./dist/indexBrowser.js"
18 }
19 },
20 "files": [
21 "dist",
22 "!dist/test"
23 ],
24 "scripts": {
25 "build": "npm run tsc",
26 "clean": "rimraf --glob dist *.tsbuildinfo *.done.build.log",
27 "prettier": "prettier --check . --ignore-path ../../.prettierignore",
28 "prettier:fix": "prettier --write . --ignore-path ../../.prettierignore",
29 "test": "npm run test:local",
30 "test:local": "node --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js --testPathPattern=\".*\\.spec\\.js\"",
31 "test:local:debug": "node --inspect-brk --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js --testPathPattern=\".*\\.spec\\.js\"",
32 "tsc": "tsc -b"
33 },
34 "dependencies": {
35 "@typeagent/agent-sdk": "workspace:*",
36 "action-schema": "workspace:*",
37 "aiclient": "workspace:*",
38 "async": "^3.2.5",
39 "chalk": "^5.4.1",
40 "common-utils": "workspace:*",
41 "debug": "^4.4.0",
42 "telemetry": "workspace:*",
43 "typechat": "^0.1.1"
44 },
45 "devDependencies": {
46 "@types/async": "^3.2.24",
47 "@types/debug": "^4.1.12",
48 "@types/jest": "^29.5.7",
49 "jest": "^29.7.0",
50 "prettier": "^3.5.3",
51 "rimraf": "^6.0.1",
52 "typescript": "~5.4.5"
53 }
54}
55