@kb-labs/scaffold 2.33.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,33 +1,29 @@
1
1
  {
2
2
  "name": "@kb-labs/scaffold",
3
- "version": "2.33.0",
4
- "type": "module",
5
3
  "description": "Generic entity scaffolder for KB Labs plugins, adapters, and friends.",
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
  },
18
- "kb": {
19
- "manifest": "./dist/manifest.js"
20
- },
21
18
  "files": [
22
19
  "dist",
23
20
  "templates"
24
21
  ],
25
- "sideEffects": false,
26
22
  "dependencies": {
27
23
  "@clack/prompts": "^0.11.0",
28
- "@kb-labs/sdk": "2.18.2",
29
- "@kb-labs/scaffold-core": "2.33.0",
30
- "@kb-labs/scaffold-contracts": "2.33.0"
24
+ "@kb-labs/scaffold-contracts": "2.35.0",
25
+ "@kb-labs/scaffold-core": "2.35.0",
26
+ "@kb-labs/sdk": "2.19.0"
31
27
  },
32
28
  "devDependencies": {
33
29
  "@types/node": "^24.3.3",
@@ -36,20 +32,24 @@
36
32
  "tsup": "^8.5.0",
37
33
  "typescript": "^5.6.3",
38
34
  "vitest": "^3.2.4",
39
- "@kb-labs/devkit": "2.33.0",
40
- "@kb-labs/plugin-contracts": "2.33.0"
35
+ "@kb-labs/devkit": "2.35.0",
36
+ "@kb-labs/plugin-contracts": "2.35.0"
41
37
  },
42
38
  "engines": {
43
39
  "node": ">=20.0.0",
44
40
  "pnpm": ">=9.0.0"
45
41
  },
42
+ "kb": {
43
+ "manifest": "./dist/manifest.js"
44
+ },
45
+ "sideEffects": false,
46
46
  "scripts": {
47
- "clean": "rimraf dist",
48
47
  "build": "tsup",
48
+ "clean": "rimraf dist",
49
49
  "dev": "tsup --watch",
50
- "type-check": "tsc --noEmit",
50
+ "lint": "eslint src --ext .ts",
51
51
  "test": "vitest run --passWithNoTests",
52
52
  "test:watch": "vitest",
53
- "lint": "eslint src --ext .ts"
53
+ "type-check": "tsc --noEmit"
54
54
  }
55
55
  }
@@ -20,7 +20,7 @@
20
20
  "test": "vitest run --passWithNoTests"
21
21
  },
22
22
  "dependencies": {
23
- "<%= it.scope ? it.scope + '/' : '' %><%= it.name %>-contracts": "workspace:*",
23
+ "<%= it.scope ? it.scope + '/' : '' %><%= it.name %>-contracts": "<%= it.mode === 'in-workspace' ? 'workspace:*' : '^0.1.0' %>",
24
24
  "@kb-labs/sdk": "<%= it.mode === 'in-workspace' ? 'workspace:*' : '^' + it.versions.sdk %>"
25
25
  },
26
26
  "devDependencies": {
@@ -27,8 +27,8 @@
27
27
  "test": "vitest run --passWithNoTests"
28
28
  },
29
29
  "dependencies": {
30
- "<%= it.scope ? it.scope + '/' : '' %><%= it.name %>-core": "workspace:*",
31
- "<%= it.scope ? it.scope + '/' : '' %><%= it.name %>-contracts": "workspace:*",
30
+ "<%= it.scope ? it.scope + '/' : '' %><%= it.name %>-core": "<%= it.mode === 'in-workspace' ? 'workspace:*' : '^0.1.0' %>",
31
+ "<%= it.scope ? it.scope + '/' : '' %><%= it.name %>-contracts": "<%= it.mode === 'in-workspace' ? 'workspace:*' : '^0.1.0' %>",
32
32
  "@kb-labs/sdk": "<%= it.mode === 'in-workspace' ? 'workspace:*' : '^' + it.versions.sdk %>"<% if (it.mode === 'standalone') { %>,
33
33
  "@kb-labs/shared-command-kit": "^<%= it.versions.commandKit %>"<% } %>
34
34
  },