microsoft/TypeAgent

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
a3694ef9cffd2f587c8d3fdd92162f3192a79db0

Branches

Tags

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

Clone

HTTPS

Download ZIP

ts/packages/cache/package.json

49lines · 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 "scripts": {
21 "build": "npm run tsc",
22 "clean": "rimraf --glob dist *.tsbuildinfo *.done.build.log",
23 "prettier": "prettier --check . --ignore-path ../../.prettierignore",
24 "prettier:fix": "prettier --write . --ignore-path ../../.prettierignore",
25 "test": "node --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js --testPathPattern=\".*\\.spec\\.js\"",
26 "test:debug": "node --inspect-brk --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js --testPathPattern=\".*\\.spec\\.js\"",
27 "tsc": "tsc -b"
28 },
29 "dependencies": {
30 "@typeagent/agent-sdk": "workspace:*",
31 "aiclient": "workspace:*",
32 "async": "^3.2.5",
33 "chalk": "^5.3.0",
34 "common-utils": "workspace:*",
35 "debug": "^4.3.4",
36 "telemetry": "workspace:*",
37 "typechat": "^0.1.1"
38 },
39 "devDependencies": {
40 "@types/async": "^3.2.24",
41 "@types/debug": "^4.1.10",
42 "@types/jest": "^29.5.7",
43 "@types/node": "^18.18.7",
44 "jest": "^29.7.0",
45 "prettier": "^3.2.5",
46 "rimraf": "^5.0.5",
47 "typescript": "^5.4.2"
48 }
49}
50