microsoft/TypeAgent

Public

mirrored fromhttps://github.com/microsoft/TypeAgentAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/fix-shell-and-cli-windows-job

Branches

Tags

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

Clone

HTTPS

Download ZIP

ts/packages/agentRpc/package.json

41lines · modecode

1{
2 "name": "@typeagent/agent-rpc",
3 "version": "0.0.1",
4 "description": "Remoting library for the TypeAgent SDK",
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/agentRpc"
10 },
11 "license": "MIT",
12 "author": "Microsoft",
13 "type": "module",
14 "exports": {
15 "./client": "./dist/client.js",
16 "./channel": "./dist/common.js",
17 "./rpc": "./dist/rpc.js",
18 "./server": "./dist/server.js"
19 },
20 "types": "./dist/index.d.ts",
21 "scripts": {
22 "build": "npm run tsc",
23 "clean": "rimraf --glob dist *.tsbuildinfo *.done.build.log",
24 "prettier": "prettier --check . --ignore-path ../../.prettierignore",
25 "prettier:fix": "prettier --write . --ignore-path ../../.prettierignore",
26 "tsc": "tsc -b"
27 },
28 "dependencies": {
29 "@typeagent/agent-sdk": "workspace:*",
30 "@typeagent/common-utils": "workspace:*",
31 "debug": "^4.4.0"
32 },
33 "devDependencies": {
34 "@types/debug": "^4.1.12",
35 "@types/jest": "^29.5.7",
36 "jest": "^29.7.0",
37 "prettier": "^3.5.3",
38 "rimraf": "^6.0.1",
39 "typescript": "~5.4.5"
40 }
41}
42