-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
84 lines (84 loc) · 2.91 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "agent-dispatcher",
"version": "0.0.1",
"description": "TypeAgent Dispatcher",
"homepage": "https://github.com/microsoft/TypeAgent#readme",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/TypeAgent.git",
"directory": "ts/packages/dispatcher"
},
"license": "MIT",
"author": "Microsoft",
"type": "module",
"exports": {
".": "./dist/index.js",
"./rpc/clientio/client": "./dist/rpc/clientIOClient.js",
"./rpc/clientio/server": "./dist/rpc/clientIOServer.js",
"./rpc/dispatcher/client": "./dist/rpc/dispatcherClient.js",
"./rpc/dispatcher/server": "./dist/rpc/dispatcherServer.js",
"./helpers/console": "./dist/helpers/console.js",
"./internal": "./dist/internal.js",
"./explorer": "./dist/explorer.js"
},
"scripts": {
"build": "npm run tsc",
"clean": "rimraf --glob dist *.tsbuildinfo *.done.build.log",
"prettier": "prettier --check . --ignore-path ../../.prettierignore",
"prettier:fix": "prettier --write . --ignore-path ../../.prettierignore",
"test": "node --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js --testPathPattern=\".*\\.spec\\.js\"",
"test:debug": "node --inspect-brk --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js --testPathPattern=\".*\\.spec\\.js\"",
"test:full": "node --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js",
"tsc": "tsc -b"
},
"dependencies": {
"@azure/msal-node-extensions": "^1.5.0",
"@typeagent/agent-sdk": "workspace:*",
"action-schema": "workspace:*",
"agent-cache": "workspace:*",
"agent-rpc": "workspace:*",
"aiclient": "workspace:*",
"android-mobile-agent": "workspace:*",
"browser-typeagent": "workspace:*",
"calendar": "workspace:*",
"chalk": "^5.3.0",
"chat-agent": "workspace:*",
"code-agent": "workspace:*",
"common-utils": "workspace:*",
"debug": "^4.3.4",
"desktop-automation": "workspace:*",
"email": "workspace:*",
"exifreader": "4.23.5",
"file-size": "^1.0.0",
"glob": "^10.3.12",
"greeting-agent": "workspace:*",
"image-agent": "workspace:*",
"knowledge-processor": "workspace:*",
"list-agent": "workspace:*",
"markdown-agent": "workspace:*",
"music": "workspace:*",
"oracle-agent": "workspace:*",
"photo-agent": "workspace:*",
"proper-lockfile": "^4.1.2",
"spelunker-agent": "workspace:*",
"string-width": "^7.2.0",
"telemetry": "workspace:*",
"typeagent": "workspace:*",
"typechat": "^0.1.1",
"ws": "^8.17.1"
},
"devDependencies": {
"@types/debug": "^4.1.10",
"@types/file-size": "^1.0.3",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.7",
"@types/node": "^18.18.7",
"@types/proper-lockfile": "^4.1.4",
"@types/ws": "^8.5.10",
"dotenv": "^16.3.1",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"typescript": "^5.4.2"
}
}