@kb-labs/devkit 2.107.0 → 2.110.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.
File without changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kb-labs/devkit",
3
3
  "description": "Shared developer toolkit for KB Labs projects: TS/ESLint/Prettier/Vitest/Tsup presets and reusable GitHub Actions.",
4
- "version": "2.107.0",
4
+ "version": "2.110.0",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "exports": {
@@ -107,6 +107,26 @@
107
107
  ".github/workflow-templates/**",
108
108
  ".github/actions/**"
109
109
  ],
110
+ "scripts": {
111
+ "build": "echo \"@kb-labs/devkit: nothing to build\"",
112
+ "clean": "rimraf dist",
113
+ "dev": "tsup --config tsup.config.ts --watch",
114
+ "fixtures": "node scripts/fixtures.js –help",
115
+ "fixtures:bootstrap": "node scripts/fixtures.js –action=bootstrap",
116
+ "fixtures:build": "node scripts/fixtures.js –action=build",
117
+ "fixtures:check": "node scripts/fixtures.js –action=check",
118
+ "fixtures:ci": "node scripts/fixtures.js –action=check –since=${GITHUB_BASE_REF:-origin/main} –concurrency=3 || node scripts/fixtures.js –action=check",
119
+ "fixtures:clean": "node scripts/fixtures.js –action=clean",
120
+ "fixtures:lint": "node scripts/fixtures.js –action=lint",
121
+ "fixtures:test": "node scripts/fixtures.js –action=test",
122
+ "lint": "echo \"@kb-labs/devkit: lint skipped (plain JS/MJS, not TS project)\" && exit 0",
123
+ "lint:fix": "eslint . --fix --ignore-pattern 'dist/**'",
124
+ "paths": "node ./bin/devkit-paths.mjs",
125
+ "postinstall": "kb-devkit-tsup-external --generate || true",
126
+ "test": "vitest run --passWithNoTests",
127
+ "test:watch": "vitest --passWithNoTests",
128
+ "type-check": "echo \"@kb-labs/devkit: type-check skipped (plain JS/MJS, not TS project)\" && exit 0"
129
+ },
110
130
  "dependencies": {
111
131
  "eslint-import-resolver-typescript": "^3.10.1",
112
132
  "eslint-plugin-import": "^2.32.0",
@@ -117,6 +137,7 @@
117
137
  "yaml": "^2.8.0"
118
138
  },
119
139
  "devDependencies": {
140
+ "@kb-labs/devkit": "workspace:*",
120
141
  "@types/node": "^24.3.3",
121
142
  "@vitest/coverage-istanbul": "^4.1.4",
122
143
  "@vitest/coverage-v8": "^3.2.4",
@@ -130,13 +151,13 @@
130
151
  "tsup": "^8.5.0",
131
152
  "typescript": "^5.9.2",
132
153
  "typescript-eslint": "^8.44.0",
133
- "vitest": "^3.2.6",
134
- "@kb-labs/devkit": "2.107.0"
154
+ "vitest": "^3.2.6"
135
155
  },
136
156
  "engines": {
137
157
  "node": ">=22.0.0",
138
158
  "pnpm": ">=9.11.0"
139
159
  },
160
+ "packageManager": "pnpm@9.11.0+sha512.0a203ffaed5a3f63242cd064c8fb5892366c103e328079318f78062f24ea8c9d50bc6a47aa3567cabefd824d170e78fa2745ed1f16b132e16436146b7688f19b",
140
161
  "peerDependencies": {
141
162
  "@playwright/test": "*",
142
163
  "eslint": "^9.35.0",
@@ -170,25 +191,5 @@
170
191
  },
171
192
  "publishConfig": {
172
193
  "access": "public"
173
- },
174
- "scripts": {
175
- "build": "echo \"@kb-labs/devkit: nothing to build\"",
176
- "clean": "rimraf dist",
177
- "dev": "tsup --config tsup.config.ts --watch",
178
- "fixtures": "node scripts/fixtures.js –help",
179
- "fixtures:bootstrap": "node scripts/fixtures.js –action=bootstrap",
180
- "fixtures:build": "node scripts/fixtures.js –action=build",
181
- "fixtures:check": "node scripts/fixtures.js –action=check",
182
- "fixtures:ci": "node scripts/fixtures.js –action=check –since=${GITHUB_BASE_REF:-origin/main} –concurrency=3 || node scripts/fixtures.js –action=check",
183
- "fixtures:clean": "node scripts/fixtures.js –action=clean",
184
- "fixtures:lint": "node scripts/fixtures.js –action=lint",
185
- "fixtures:test": "node scripts/fixtures.js –action=test",
186
- "lint": "echo \"@kb-labs/devkit: lint skipped (plain JS/MJS, not TS project)\" && exit 0",
187
- "lint:fix": "eslint . --fix --ignore-pattern 'dist/**'",
188
- "paths": "node ./bin/devkit-paths.mjs",
189
- "postinstall": "kb-devkit-tsup-external --generate || true",
190
- "test": "vitest run --passWithNoTests",
191
- "test:watch": "vitest --passWithNoTests",
192
- "type-check": "echo \"@kb-labs/devkit: type-check skipped (plain JS/MJS, not TS project)\" && exit 0"
193
194
  }
194
- }
195
+ }