-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 4.09 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 4.09 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@stdiobus/workers-registry",
"version": "1.5.2",
"description": "Worker implementations for stdio Bus kernel - ACP, MCP, and protocol bridges",
"type": "module",
"main": "./out/dist/workers-registry/acp-registry/index.js",
"types": "./out/tsc/workers-registry/index.d.ts",
"exports": {
".": {
"import": "./out/dist/workers-registry/acp-worker/index.js",
"types": "./out/tsc/workers-registry/acp-worker/src/index.d.ts"
},
"./launch": {
"import": "./launch/index.js",
"types": "./out/tsc/workers-registry/launch/index.d.ts"
},
"./workers/acp-worker": {
"import": "./out/dist/workers-registry/acp-worker/index.js",
"types": "./out/tsc/workers-registry/acp-worker/src/index.d.ts"
},
"./workers/acp-worker/agent": {
"import": "./out/dist/workers-registry/acp-worker/agent.js",
"types": "./out/tsc/workers-registry/acp-worker/src/agent.d.ts"
},
"./workers/registry-launcher": {
"import": "./out/dist/workers-registry/registry-launcher/index.js",
"types": "./out/tsc/workers-registry/registry-launcher/src/index.d.ts"
},
"./workers/registry-launcher/registry": {
"import": "./out/dist/workers-registry/registry-launcher/registry/index.js",
"types": "./out/tsc/workers-registry/registry-launcher/src/registry/index.d.ts"
},
"./workers/registry-launcher/runtime": {
"import": "./out/dist/workers-registry/registry-launcher/runtime/manager.js",
"types": "./out/tsc/workers-registry/registry-launcher/src/runtime/manager.d.ts"
},
"./workers/registry-launcher/config": {
"import": "./out/dist/workers-registry/registry-launcher/config/config.js",
"types": "./out/tsc/workers-registry/registry-launcher/src/config/config.d.ts"
},
"./workers/acp-worker/mcp": {
"import": "./out/dist/workers-registry/acp-worker/mcp/manager.js",
"types": "./out/tsc/workers-registry/acp-worker/src/mcp/manager.d.ts"
},
"./workers/echo-worker": "./out/dist/workers-registry/echo-worker/echo-worker.js",
"./workers/mcp-echo-server": {
"import": "./out/dist/workers-registry/mcp-echo-server/index.js",
"types": "./out/tsc/workers-registry/mcp-echo-server/index.d.ts"
},
"./workers/mcp-to-acp-proxy": "./out/dist/workers-registry/mcp-to-acp-proxy/proxy.js",
"./workers/openai-agent": {
"import": "./out/dist/workers-registry/openai-agent/index.js",
"types": "./out/tsc/workers-registry/openai-agent/src/index.d.ts"
},
"./package.json": "./package.json"
},
"bin": {
"stdiobus": "./launch/index.js"
},
"files": [
"out/",
"launch/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "node scripts/build.js && yarn run types",
"build:workers": "node scripts/build.js",
"clean": "rm -rf out",
"types": "tsc --emitDeclarationOnly && tsc-alias",
"prepublishOnly": "npm run build",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:unit": "node --experimental-vm-modules node_modules/jest/bin/jest.js tests/unit",
"test:property": "node --experimental-vm-modules node_modules/jest/bin/jest.js tests/property",
"test:integration": "node --experimental-vm-modules node_modules/jest/bin/jest.js tests/integration",
"sync-acp": "node scripts/sync-acp.js"
},
"keywords": [
"acp",
"mcp",
"agent",
"transport",
"json-rpc",
"stdio-bus",
"worker",
"protocol"
],
"repository": {
"type": "git",
"url": "https://github.com/stdiobus/workers-registry.git"
},
"bugs": {
"url": "https://github.com/stdiobus/workers-registry/issues"
},
"homepage": "https://stdiobus.com/",
"license": "Apache-2.0",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@agentclientprotocol/sdk": "^0.14.1",
"@modelcontextprotocol/sdk": "^1.27.1"
},
"devDependencies": {
"@stdiobus/node": "^0.1.0",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"esbuild": "^0.20.0",
"fast-check": "^3.22.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.0",
"tsc-alias": "^1.8.16",
"typescript": "^5.0.0"
}
}