microsoft/TypeAgent

Public

mirrored from https://github.com/microsoft/TypeAgentAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
e4378ec2bd9df3e8a22320aab2c7ea3fbd088ff4

Branches

Tags

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

Clone

HTTPS

Download ZIP

ts/packages/agentRpc/package.json

44lines · 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 "jest-esm": "node --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js",
25 "prettier": "prettier --check . --ignore-path ../../.prettierignore",
26 "prettier:fix": "prettier --write . --ignore-path ../../.prettierignore",
27 "test": "npm run test:local",
28 "test:local": "pnpm run jest-esm --testPathPattern=\".*[.]spec[.]js\"",
29 "tsc": "tsc -b"
30 },
31 "dependencies": {
32 "@typeagent/agent-sdk": "workspace:*",
33 "@typeagent/common-utils": "workspace:*",
34 "debug": "^4.4.0"
35 },
36 "devDependencies": {
37 "@types/debug": "^4.1.12",
38 "@types/jest": "^29.5.7",
39 "jest": "^29.7.0",
40 "prettier": "^3.5.3",
41 "rimraf": "^6.0.1",
42 "typescript": "~5.4.5"
43 }
44}
45