@tunnelbox/hermes 0.1.0 → 0.1.3

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