@tunnelbox/hermes 0.1.0 → 0.1.1
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/package.json +36 -30
package/package.json
CHANGED
|
@@ -1,30 +1,36 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@tunnelbox/hermes",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "tunnelbox 的 Hermes 适配器(B 类,Python 框架/CLI 桥接):手机远程驱动本机 Hermes Agent(hermes chat -q,会话/流式/中止/删除)",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "./dist/index.mjs",
|
|
7
|
-
"
|
|
8
|
-
"dist"
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
"
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
"
|
|
16
|
-
},
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
"
|
|
22
|
-
},
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
"
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@tunnelbox/hermes",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "tunnelbox 的 Hermes 适配器(B 类,Python 框架/CLI 桥接):手机远程驱动本机 Hermes Agent(hermes chat -q,会话/流式/中止/删除)",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.mjs",
|
|
7
|
+
"bin": {
|
|
8
|
+
"tunnelbox-hermes": "dist/index.mjs"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist",
|
|
12
|
+
"README.md"
|
|
13
|
+
],
|
|
14
|
+
"publishConfig": {
|
|
15
|
+
"access": "public"
|
|
16
|
+
},
|
|
17
|
+
"scripts": {
|
|
18
|
+
"type-check": "tsc --noEmit",
|
|
19
|
+
"build": "node scripts/build.mjs",
|
|
20
|
+
"start": "node dist/index.mjs",
|
|
21
|
+
"smoke": "node scripts/smoke.mjs"
|
|
22
|
+
},
|
|
23
|
+
"engines": {
|
|
24
|
+
"node": ">=22.0.0"
|
|
25
|
+
},
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"qrcode": "^1.5.3"
|
|
28
|
+
},
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"@tunnelbox/core": "0.1.0",
|
|
31
|
+
"@types/node": "^22.0.0",
|
|
32
|
+
"@types/qrcode": "^1.5.5",
|
|
33
|
+
"esbuild": "^0.24.0",
|
|
34
|
+
"typescript": "^5.4.5"
|
|
35
|
+
}
|
|
36
|
+
}
|