@kb-labs/quality-entry 2.34.0 → 2.36.0

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,43 +1,63 @@
1
1
  {
2
2
  "name": "@kb-labs/quality-entry",
3
- "version": "2.34.0",
4
- "type": "module",
5
3
  "description": "Quality Plugin CLI commands for monorepo analysis, health checks, and automated fixes.",
4
+ "version": "2.36.0",
5
+ "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",
8
8
  "exports": {
9
9
  ".": {
10
- "import": "./dist/index.js",
11
- "types": "./dist/index.d.ts"
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js"
12
12
  },
13
13
  "./plugin-manifest": {
14
- "import": "./dist/manifest.js",
15
- "types": "./dist/manifest.d.ts"
14
+ "types": "./dist/manifest.d.ts",
15
+ "import": "./dist/manifest.js"
16
16
  },
17
17
  "./dist/*": "./dist/*"
18
18
  },
19
- "kb": {
20
- "manifest": "./dist/manifest.js"
21
- },
22
19
  "files": [
23
20
  "dist",
24
21
  "README.md",
25
22
  "LICENSE"
26
23
  ],
27
- "sideEffects": false,
28
24
  "dependencies": {
29
25
  "zod": "^3.25.76",
30
- "@kb-labs/plugin-contracts": "2.34.0",
31
- "@kb-labs/quality-core": "2.34.0",
32
- "@kb-labs/quality-contracts": "2.34.0",
33
- "@kb-labs/sdk": "2.18.2"
26
+ "@kb-labs/quality-contracts": "2.36.0",
27
+ "@kb-labs/quality-core": "2.36.0",
28
+ "@kb-labs/plugin-contracts": "2.36.0",
29
+ "@kb-labs/sdk": "2.19.0"
34
30
  },
35
- "peerDependencies": {
31
+ "devDependencies": {
32
+ "@rspack/cli": "^1.7.0",
33
+ "@rspack/core": "^1.7.0",
34
+ "@types/node": "^24.3.3",
35
+ "@types/react": "^18.3.18",
36
+ "@types/react-dom": "^18.3.5",
37
+ "globby": "^11.0.0",
36
38
  "react": "^18.3.1",
37
39
  "react-dom": "^18.3.1",
38
- "antd": "^5.21.0",
40
+ "rimraf": "^6.0.1",
41
+ "tsup": "^8.5.0",
42
+ "typescript": "^5.6.3",
43
+ "vitest": "^3.2.4",
44
+ "@kb-labs/devkit": "2.36.0",
45
+ "@kb-labs/plugin-runtime": "2.36.0",
46
+ "@kb-labs/studio-plugin-tools": "2.36.0"
47
+ },
48
+ "engines": {
49
+ "node": ">=20.0.0",
50
+ "pnpm": ">=9.0.0"
51
+ },
52
+ "kb": {
53
+ "manifest": "./dist/manifest.js"
54
+ },
55
+ "peerDependencies": {
39
56
  "@ant-design/icons": "^5.4.0",
40
57
  "@tanstack/react-query": "^5.0.0",
58
+ "antd": "^5.21.0",
59
+ "react": "^18.3.1",
60
+ "react-dom": "^18.3.1",
41
61
  "react-router-dom": "^7.0.0"
42
62
  },
43
63
  "peerDependenciesMeta": {
@@ -60,39 +80,19 @@
60
80
  "optional": true
61
81
  }
62
82
  },
63
- "devDependencies": {
64
- "@types/node": "^24.3.3",
65
- "@types/react": "^18.3.18",
66
- "@types/react-dom": "^18.3.5",
67
- "react": "^18.3.1",
68
- "react-dom": "^18.3.1",
69
- "@rspack/cli": "^1.7.0",
70
- "@rspack/core": "^1.7.0",
71
- "globby": "^11.0.0",
72
- "rimraf": "^6.0.1",
73
- "tsup": "^8.5.0",
74
- "typescript": "^5.6.3",
75
- "vitest": "^3.2.4",
76
- "@kb-labs/devkit": "2.34.0",
77
- "@kb-labs/studio-plugin-tools": "2.34.0",
78
- "@kb-labs/plugin-runtime": "2.34.0"
79
- },
80
- "engines": {
81
- "node": ">=20.0.0",
82
- "pnpm": ">=9.0.0"
83
- },
83
+ "sideEffects": false,
84
84
  "scripts": {
85
- "pretype-check": "pnpm --filter @kb-labs/quality-entry build",
86
- "clean": "rimraf dist",
87
85
  "build": "tsup --config tsup.config.ts && pnpm run build:studio",
88
86
  "build:cli": "tsup --config tsup.config.ts",
89
87
  "build:studio": "rspack build --config rspack.studio.config.mjs",
88
+ "clean": "rimraf dist",
90
89
  "dev": "tsup --config tsup.config.ts --watch",
91
90
  "dev:studio": "rspack serve --config rspack.studio.config.mjs",
92
91
  "lint": "eslint src --ext .ts,.tsx",
93
92
  "lint:fix": "eslint . --fix",
94
- "type-check": "tsc --noEmit",
93
+ "pretype-check": "pnpm --filter @kb-labs/quality-entry build",
95
94
  "test": "vitest run --passWithNoTests",
96
- "test:watch": "vitest"
95
+ "test:watch": "vitest",
96
+ "type-check": "tsc --noEmit"
97
97
  }
98
98
  }