@tool-bridge/server 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/dist/chunk-6SMIQ6QU.js +57300 -0
- package/dist/chunk-MLKGABMK.js +9 -0
- package/dist/index.d.ts +764 -0
- package/dist/index.js +19 -0
- package/dist/main.js +37 -0
- package/dist/webapi-VLM4IKVB.js +3778 -0
- package/package.json +65 -0
package/package.json
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@tool-bridge/server",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "tool-bridge self-hosted server: run the HTBP gateway on Node with SQLite persistence, filesystem object storage and WebSocket device channel — single container via docker run",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"main": "./dist/index.js",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.js"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"bin": {
|
|
15
|
+
"tool-bridge-server": "./dist/main.js"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist"
|
|
19
|
+
],
|
|
20
|
+
"engines": {
|
|
21
|
+
"node": ">=22"
|
|
22
|
+
},
|
|
23
|
+
"publishConfig": {
|
|
24
|
+
"access": "public"
|
|
25
|
+
},
|
|
26
|
+
"keywords": [
|
|
27
|
+
"self-hosted",
|
|
28
|
+
"docker",
|
|
29
|
+
"mcp",
|
|
30
|
+
"htbp",
|
|
31
|
+
"tool-bridge",
|
|
32
|
+
"agent-tools"
|
|
33
|
+
],
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@cfworker/json-schema": "^4.1.1",
|
|
36
|
+
"@hono/node-server": "^1.19.7",
|
|
37
|
+
"aws4fetch": "^1.0.20",
|
|
38
|
+
"better-sqlite3": "^12.6.0",
|
|
39
|
+
"hono": "^4.12.28",
|
|
40
|
+
"ws": "8.21.0",
|
|
41
|
+
"@tool-bridge/dashboard": "0.6.0"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@types/better-sqlite3": "^7.6.13",
|
|
45
|
+
"@types/node": "^26.1.0",
|
|
46
|
+
"@types/ws": "8.18.1",
|
|
47
|
+
"tsup": "^8.5.1",
|
|
48
|
+
"tsx": "^4.23.0",
|
|
49
|
+
"vitest": "^4.1.10",
|
|
50
|
+
"@tool-bridge/app": "0.1.0",
|
|
51
|
+
"@tool-bridge/core": "0.1.0"
|
|
52
|
+
},
|
|
53
|
+
"repository": {
|
|
54
|
+
"type": "git",
|
|
55
|
+
"url": "git+https://github.com/TokenRollAI/tool-bridge.git",
|
|
56
|
+
"directory": "packages/server"
|
|
57
|
+
},
|
|
58
|
+
"scripts": {
|
|
59
|
+
"typecheck": "tsc --noEmit",
|
|
60
|
+
"test": "vitest run",
|
|
61
|
+
"build": "tsup",
|
|
62
|
+
"start": "tsx src/main.ts"
|
|
63
|
+
},
|
|
64
|
+
"types": "./dist/index.d.ts"
|
|
65
|
+
}
|