@kb-labs/core-resource-broker 2.114.0 → 2.116.12

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 +19 -19
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kb-labs/core-resource-broker",
3
3
  "description": "Centralized resource broker for queue management, rate limiting, and retry logic",
4
- "version": "2.114.0",
4
+ "version": "2.116.12",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",
@@ -15,29 +15,19 @@
15
15
  "files": [
16
16
  "dist"
17
17
  ],
18
- "scripts": {
19
- "build": "pnpm clean && tsup --config tsup.config.ts",
20
- "clean": "rimraf dist",
21
- "dev": "tsup --config tsup.config.ts --watch",
22
- "lint": "eslint src --ext .ts",
23
- "lint:fix": "eslint . --fix",
24
- "test": "vitest run --passWithNoTests",
25
- "test:watch": "vitest",
26
- "type-check": "tsc --noEmit"
27
- },
28
18
  "dependencies": {
29
- "@kb-labs/core-retry": "^2.114.0",
30
- "@kb-labs/core-platform": "^2.114.0",
31
- "@kb-labs/core-state-broker": "^2.114.0"
19
+ "@kb-labs/core-retry": "2.116.12",
20
+ "@kb-labs/core-state-broker": "2.116.12",
21
+ "@kb-labs/core-platform": "2.116.12"
32
22
  },
33
23
  "devDependencies": {
34
- "@kb-labs/devkit": "workspace:*",
35
- "@kb-labs/shared-testing": "workspace:*",
36
24
  "@types/node": "^24.3.3",
37
25
  "rimraf": "^6.0.1",
38
26
  "tsup": "^8.5.0",
39
27
  "typescript": "^5.6.3",
40
- "vitest": "^3.2.6"
28
+ "vitest": "^3.2.6",
29
+ "@kb-labs/devkit": "2.116.12",
30
+ "@kb-labs/shared-testing": "2.116.12"
41
31
  },
42
32
  "engines": {
43
33
  "node": ">=22.0.0",
@@ -46,5 +36,15 @@
46
36
  "publishConfig": {
47
37
  "access": "public"
48
38
  },
49
- "sideEffects": false
50
- }
39
+ "sideEffects": false,
40
+ "scripts": {
41
+ "build": "pnpm clean && tsup --config tsup.config.ts",
42
+ "clean": "rimraf dist",
43
+ "dev": "tsup --config tsup.config.ts --watch",
44
+ "lint": "eslint src --ext .ts",
45
+ "lint:fix": "eslint . --fix",
46
+ "test": "vitest run --passWithNoTests",
47
+ "test:watch": "vitest",
48
+ "type-check": "tsc --noEmit"
49
+ }
50
+ }