@kb-labs/shared-testing 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 +17 -18
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kb-labs/shared-testing",
3
3
  "description": "Test utilities for KB Labs plugin development — mock builders, platform setup, test context",
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",
@@ -16,34 +16,33 @@
16
16
  "README.md",
17
17
  "LICENSE"
18
18
  ],
19
- "scripts": {
20
- "build": "tsup --config tsup.config.ts",
21
- "clean": "rimraf dist",
22
- "dev": "tsup --config tsup.config.ts --watch",
23
- "lint": "eslint src",
24
- "lint:fix": "eslint src --fix",
25
- "test": "vitest run",
26
- "test:watch": "vitest",
27
- "type-check": "tsc --noEmit"
28
- },
29
19
  "dependencies": {
30
- "@kb-labs/core-platform": "^2.112.0",
31
- "vitest": "^3.2.6"
20
+ "vitest": "^3.2.6",
21
+ "@kb-labs/core-platform": "2.116.11"
32
22
  },
33
23
  "devDependencies": {
34
- "@kb-labs/devkit": "workspace:*",
35
24
  "@types/node": "^24.3.3",
36
25
  "rimraf": "^6.0.1",
37
26
  "tsup": "^8.5.0",
38
- "typescript": "^5.6.3"
27
+ "typescript": "^5.6.3",
28
+ "@kb-labs/devkit": "2.116.11"
39
29
  },
40
30
  "engines": {
41
31
  "node": ">=22.0.0",
42
32
  "pnpm": ">=9.0.0"
43
33
  },
44
- "packageManager": "pnpm@9.11.0",
45
34
  "publishConfig": {
46
35
  "access": "public"
47
36
  },
48
- "sideEffects": false
49
- }
37
+ "sideEffects": false,
38
+ "scripts": {
39
+ "build": "tsup --config tsup.config.ts",
40
+ "clean": "rimraf dist",
41
+ "dev": "tsup --config tsup.config.ts --watch",
42
+ "lint": "eslint src",
43
+ "lint:fix": "eslint src --fix",
44
+ "test": "vitest run",
45
+ "test:watch": "vitest",
46
+ "type-check": "tsc --noEmit"
47
+ }
48
+ }