@kb-labs/workflow-entry 2.34.0 → 2.35.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,69 +1,69 @@
1
1
  {
2
2
  "name": "@kb-labs/workflow-entry",
3
- "version": "2.34.0",
4
- "type": "module",
5
3
  "description": "CLI commands for KB Labs Workflow Daemon - interact with workflow daemon via HTTP API.",
4
+ "version": "2.35.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
  ],
26
- "sideEffects": false,
27
23
  "dependencies": {
28
- "@kb-labs/workflow-contracts": "2.34.0",
29
- "@kb-labs/core-platform": "2.34.0",
30
- "@kb-labs/sdk": "2.18.2"
24
+ "@kb-labs/core-platform": "2.35.0",
25
+ "@kb-labs/workflow-contracts": "2.35.0",
26
+ "@kb-labs/sdk": "2.19.0"
31
27
  },
32
28
  "devDependencies": {
29
+ "@rspack/cli": "^1.7.0",
30
+ "@rspack/core": "^1.7.0",
33
31
  "@types/node": "^24.3.3",
34
32
  "@types/react": "^18.3.18",
35
33
  "@types/react-dom": "^18.3.5",
36
34
  "react": "^18.3.1",
37
35
  "react-dom": "^18.3.1",
38
- "@rspack/cli": "^1.7.0",
39
- "@rspack/core": "^1.7.0",
40
36
  "rimraf": "^6.0.1",
41
37
  "tsup": "^8.5.0",
42
38
  "typescript": "^5.6.3",
43
39
  "vitest": "^3.2.4",
44
- "@kb-labs/studio-plugin-tools": "2.34.0",
45
- "@kb-labs/devkit": "2.34.0"
40
+ "@kb-labs/devkit": "2.35.0",
41
+ "@kb-labs/studio-plugin-tools": "2.35.0"
42
+ },
43
+ "engines": {
44
+ "node": ">=20.0.0",
45
+ "pnpm": ">=9.0.0"
46
+ },
47
+ "kb": {
48
+ "manifest": "./dist/manifest.js"
46
49
  },
47
50
  "peerDependencies": {
51
+ "antd": "^5.21.0",
48
52
  "react": "^18.3.1",
49
53
  "react-dom": "^18.3.1",
50
- "antd": "^5.21.0",
51
54
  "react-router-dom": "^7.0.0"
52
55
  },
53
- "engines": {
54
- "node": ">=20.0.0",
55
- "pnpm": ">=9.0.0"
56
- },
56
+ "sideEffects": false,
57
57
  "scripts": {
58
- "clean": "rimraf dist",
59
58
  "build": "tsup --config tsup.config.ts && pnpm run build:studio",
60
59
  "build:cli": "tsup --config tsup.config.ts",
61
60
  "build:studio": "rspack build --config rspack.studio.config.mjs",
61
+ "clean": "rimraf dist",
62
62
  "dev": "tsup --config tsup.config.ts --watch",
63
- "type-check": "tsc --noEmit",
64
63
  "lint": "eslint src --ext .ts",
65
64
  "lint:fix": "eslint . --fix",
66
65
  "test": "vitest run --passWithNoTests",
67
- "test:watch": "vitest"
66
+ "test:watch": "vitest",
67
+ "type-check": "tsc --noEmit"
68
68
  }
69
69
  }