@kb-labs/host-agent-entry 2.112.0 → 2.116.11

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 (1) hide show
  1. package/package.json +21 -21
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kb-labs/host-agent-entry",
3
3
  "description": "CLI commands for Host Agent — register and status.",
4
- "version": "2.112.0",
4
+ "version": "2.116.11",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",
@@ -20,32 +20,21 @@
20
20
  "dist",
21
21
  "README.md"
22
22
  ],
23
- "scripts": {
24
- "build": "tsup --config tsup.config.ts && node -e \"const fs=require('fs'),p=require('path');const f=p.join(process.cwd(),'../../../.kb/cache/cli-manifests.json');try{fs.unlinkSync(f);console.log('[host-agent-cli] plugin cache cleared')}catch{}\"",
25
- "clean": "rimraf dist",
26
- "dev": "tsup --config tsup.config.ts --watch",
27
- "lint": "eslint .",
28
- "lint:fix": "eslint . --fix",
29
- "test": "vitest run --passWithNoTests",
30
- "test:cli": "vitest run --config vitest.cli.config.ts --passWithNoTests",
31
- "test:watch": "vitest",
32
- "type-check": "tsc --noEmit"
33
- },
34
23
  "dependencies": {
35
- "@kb-labs/host-agent-client": "^2.112.0",
36
- "@kb-labs/host-agent-contracts": "^2.112.0",
37
- "@kb-labs/host-agent-transport": "^2.112.0",
38
- "@kb-labs/sdk": "workspace:*"
24
+ "@kb-labs/host-agent-transport": "2.116.11",
25
+ "@kb-labs/host-agent-contracts": "2.116.11",
26
+ "@kb-labs/sdk": "2.115.0",
27
+ "@kb-labs/host-agent-client": "2.116.11"
39
28
  },
40
29
  "devDependencies": {
41
- "@kb-labs/devkit": "workspace:*",
42
- "@kb-labs/shared-testing-e2e": "workspace:*",
43
30
  "@types/node": "^24.3.3",
44
31
  "eslint": "^9",
45
32
  "rimraf": "^6.0.1",
46
33
  "tsup": "^8.5.0",
47
34
  "typescript": "^5.6.3",
48
- "vitest": "^3.2.6"
35
+ "vitest": "^3.2.6",
36
+ "@kb-labs/devkit": "2.116.11",
37
+ "@kb-labs/shared-testing-e2e": "2.116.11"
49
38
  },
50
39
  "engines": {
51
40
  "node": ">=22.0.0",
@@ -54,5 +43,16 @@
54
43
  "kb": {
55
44
  "manifest": "./dist/manifest.js"
56
45
  },
57
- "sideEffects": false
58
- }
46
+ "sideEffects": false,
47
+ "scripts": {
48
+ "build": "tsup --config tsup.config.ts && node -e \"const fs=require('fs'),p=require('path');const f=p.join(process.cwd(),'../../../.kb/cache/cli-manifests.json');try{fs.unlinkSync(f);console.log('[host-agent-cli] plugin cache cleared')}catch{}\"",
49
+ "clean": "rimraf dist",
50
+ "dev": "tsup --config tsup.config.ts --watch",
51
+ "lint": "eslint .",
52
+ "lint:fix": "eslint . --fix",
53
+ "test": "vitest run --passWithNoTests",
54
+ "test:cli": "vitest run --config vitest.cli.config.ts --passWithNoTests",
55
+ "test:watch": "vitest",
56
+ "type-check": "tsc --noEmit"
57
+ }
58
+ }