microsoft/TypeAgent
Publicmirrored fromhttps://github.com/microsoft/TypeAgentAvailable
ts/packages/cache/package.json
50lines · 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": "npm run test:local", |
| 26 | "test:local": "node --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js --testPathPattern=\".*\\.spec\\.js\"", |
| 27 | "test:local:debug": "node --inspect-brk --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js --testPathPattern=\".*\\.spec\\.js\"", |
| 28 | "tsc": "tsc -b" |
| 29 | }, |
| 30 | "dependencies": { |
| 31 | "@typeagent/agent-sdk": "workspace:*", |
| 32 | "action-schema": "workspace:*", |
| 33 | "aiclient": "workspace:*", |
| 34 | "async": "^3.2.5", |
| 35 | "chalk": "^5.4.1", |
| 36 | "common-utils": "workspace:*", |
| 37 | "debug": "^4.4.0", |
| 38 | "telemetry": "workspace:*", |
| 39 | "typechat": "^0.1.1" |
| 40 | }, |
| 41 | "devDependencies": { |
| 42 | "@types/async": "^3.2.24", |
| 43 | "@types/debug": "^4.1.12", |
| 44 | "@types/jest": "^29.5.7", |
| 45 | "jest": "^29.7.0", |
| 46 | "prettier": "^3.5.3", |
| 47 | "rimraf": "^6.0.1", |
| 48 | "typescript": "^5.4.2" |
| 49 | } |
| 50 | } |
| 51 | |