microsoft/TypeAgent
Publicmirrored fromhttps://github.com/microsoft/TypeAgentAvailable
ts/packages/api/package.json
55lines · modecode
| 1 | { |
| 2 | "name": "agent-api", |
| 3 | "version": "0.0.1", |
| 4 | "description": "TypeAgent API", |
| 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/api" |
| 10 | }, |
| 11 | "license": "MIT", |
| 12 | "author": "Microsoft", |
| 13 | "type": "module", |
| 14 | "main": "./dist/index.js", |
| 15 | "scripts": { |
| 16 | "build": "npm run tsc", |
| 17 | "clean": "rimraf --glob dist *.tsbuildinfo *.done.build.log", |
| 18 | "prettier": "prettier --check . --ignore-path ../../.prettierignore", |
| 19 | "prettier:fix": "prettier --write . --ignore-path ../../.prettierignore", |
| 20 | "start": "node ./dist/index.js", |
| 21 | "test": "npm run test:local", |
| 22 | "test:local": "node --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js --testPathPattern=\".*\\.spec\\.js\"", |
| 23 | "test:local:debug": "node --inspect-brk --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js --testPathPattern=\".*\\.spec\\.js\"", |
| 24 | "tsc": "tsc -b" |
| 25 | }, |
| 26 | "dependencies": { |
| 27 | "@aws-sdk/client-s3": "^3.726.0", |
| 28 | "@aws-sdk/lib-storage": "^3.726.0", |
| 29 | "@azure/identity": "^4.9.1", |
| 30 | "@azure/storage-blob": "^12.26.0", |
| 31 | "@typeagent/agent-sdk": "workspace:*", |
| 32 | "agent-dispatcher": "workspace:*", |
| 33 | "agent-rpc": "workspace:*", |
| 34 | "aiclient": "workspace:*", |
| 35 | "chalk": "^5.4.1", |
| 36 | "common-utils": "workspace:*", |
| 37 | "debug": "^4.4.0", |
| 38 | "default-agent-provider": "workspace:*", |
| 39 | "dotenv": "^16.3.1", |
| 40 | "find-config": "^1.0.0", |
| 41 | "telemetry": "workspace:*", |
| 42 | "typeagent": "workspace:*", |
| 43 | "ws": "^8.17.1" |
| 44 | }, |
| 45 | "devDependencies": { |
| 46 | "@types/debug": "^4.1.12", |
| 47 | "@types/find-config": "1.0.4", |
| 48 | "@types/jest": "^29.5.7", |
| 49 | "@types/ws": "^8.5.10", |
| 50 | "jest": "^29.7.0", |
| 51 | "prettier": "^3.5.3", |
| 52 | "rimraf": "^6.0.1", |
| 53 | "typescript": "~5.4.5" |
| 54 | } |
| 55 | } |
| 56 | |