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