@inline-chat/hermes-agent-adapter 0.0.1 → 0.0.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inline-chat/hermes-agent-adapter",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "description": "Hermes Agent platform adapter for Inline, with a native Python plugin and bundled Inline realtime sidecar.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -14,14 +14,14 @@
14
14
  "adapter",
15
15
  "realtime"
16
16
  ],
17
- "homepage": "https://github.com/inline-chat/inline/tree/main/packages/hermes-agent#readme",
17
+ "homepage": "https://github.com/inline-chat/inline/tree/main/hermes-agent#readme",
18
18
  "bugs": {
19
19
  "url": "https://github.com/inline-chat/inline/issues"
20
20
  },
21
21
  "repository": {
22
22
  "type": "git",
23
23
  "url": "git+https://github.com/inline-chat/inline.git",
24
- "directory": "packages/hermes-agent"
24
+ "directory": "hermes-agent"
25
25
  },
26
26
  "files": [
27
27
  "LICENSE",
@@ -49,7 +49,7 @@
49
49
  },
50
50
  "scripts": {
51
51
  "build": "mkdir -p plugin/inline/sidecar && bun build ./src/install.ts --outdir dist --entry-naming '[name].js' --target=node --format=esm --packages=bundle && bun build ./src/sidecar/index.ts --outdir plugin/inline/sidecar --entry-naming 'index.mjs' --target=node --format=esm --packages=bundle && tsc -p tsconfig.json --emitDeclarationOnly",
52
- "lint": "bunx oxlint --ignore-path ../../.oxlintignore src/install.ts src/sidecar/contract.ts src/sidecar/index.ts tests/adapter-python.test.ts tests/install.test.ts tests/package-artifact.test.ts tests/sidecar-contract.test.ts tests/sidecar-runtime.test.ts vitest.config.ts",
52
+ "lint": "bunx oxlint --ignore-path ../.oxlintignore src/install.ts src/sidecar/contract.ts src/sidecar/index.ts tests/adapter-python.test.ts tests/install.test.ts tests/package-artifact.test.ts tests/sidecar-contract.test.ts tests/sidecar-runtime.test.ts vitest.config.ts",
53
53
  "pretest": "bun run build && rm -rf coverage",
54
54
  "prepack": "bun run build",
55
55
  "prepublishOnly": "bun run check",
@@ -59,7 +59,7 @@
59
59
  "check": "bun run typecheck && bun run lint && bun run test"
60
60
  },
61
61
  "dependencies": {
62
- "@inline-chat/realtime-sdk": "0.0.11",
62
+ "@inline-chat/realtime-sdk": "0.0.12",
63
63
  "yaml": "2.9.0"
64
64
  },
65
65
  "devDependencies": {