{ "name": "agent-cache", "version": "0.0.1", "private": true, "description": "Construction cache for TypeAgent requests", "homepage": "https://github.com/microsoft/TypeAgent#readme", "repository": { "type": "git", "url": "https://github.com/microsoft/TypeAgent.git", "directory": "ts/packages/cache" }, "license": "MIT", "author": "Microsoft", "type": "module", "exports": { ".": { "node": "./dist/index.js", "default": "./dist/indexBrowser.js" }, "./grammar": "./dist/indexGrammar.js" }, "files": [ "dist", "!dist/test" ], "scripts": { "build": "npm run tsc", "clean": "rimraf --glob dist *.tsbuildinfo *.done.build.log", "jest-esm": "node --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js", "prettier": "prettier --check . --ignore-path ../../.prettierignore", "prettier:fix": "prettier --write . --ignore-path ../../.prettierignore", "test": "npm run test:local", "test:local": "pnpm run jest-esm --testPathPattern=\".*[.]spec[.]js\"", "test:local:debug": "node --inspect-brk --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js --testPathPattern=\".*\\.spec\\.js\"", "tsc": "tsc -b" }, "dependencies": { "@typeagent/action-grammar": "workspace:*", "@typeagent/action-schema": "workspace:*", "@typeagent/agent-sdk": "workspace:*", "@typeagent/aiclient": "workspace:*", "@typeagent/common-utils": "workspace:*", "async": "^3.2.5", "chalk": "^5.4.1", "debug": "^4.4.0", "regexp.escape": "^2.0.1", "telemetry": "workspace:*", "typechat": "^0.1.1", "typechat-utils": "workspace:*" }, "devDependencies": { "@types/async": "^3.2.24", "@types/debug": "^4.1.12", "@types/jest": "^29.5.7", "@types/regexp.escape": "^2.0.0", "jest": "^29.7.0", "prettier": "^3.5.3", "rimraf": "^6.0.1", "test-lib": "workspace:*", "typescript": "~5.4.5" } }