{ "name": "@typeagent/agent-rpc", "version": "0.0.1", "description": "Remoting library for the TypeAgent SDK", "homepage": "https://github.com/microsoft/TypeAgent#readme", "repository": { "type": "git", "url": "https://github.com/microsoft/TypeAgent.git", "directory": "ts/packages/agentRpc" }, "license": "MIT", "author": "Microsoft", "type": "module", "exports": { "./client": "./dist/client.js", "./channel": "./dist/common.js", "./rpc": "./dist/rpc.js", "./server": "./dist/server.js" }, "types": "./dist/index.d.ts", "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\"", "tsc": "tsc -b" }, "dependencies": { "@typeagent/agent-sdk": "workspace:*", "@typeagent/common-utils": "workspace:*", "debug": "^4.4.0" }, "devDependencies": { "@types/debug": "^4.1.12", "@types/jest": "^29.5.7", "jest": "^29.7.0", "prettier": "^3.5.3", "rimraf": "^6.0.1", "typescript": "~5.4.5" } }