@kb-labs/devkit 2.114.0 → 2.116.11

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.114.0",
4
+ "version": "2.116.11",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "exports": {
@@ -107,26 +107,6 @@
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
- },
130
110
  "dependencies": {
131
111
  "eslint-import-resolver-typescript": "^3.10.1",
132
112
  "eslint-plugin-import": "^2.32.0",
@@ -137,7 +117,6 @@
137
117
  "yaml": "^2.8.0"
138
118
  },
139
119
  "devDependencies": {
140
- "@kb-labs/devkit": "workspace:*",
141
120
  "@types/node": "^24.3.3",
142
121
  "@vitest/coverage-istanbul": "^4.1.4",
143
122
  "@vitest/coverage-v8": "^3.2.4",
@@ -151,13 +130,13 @@
151
130
  "tsup": "^8.5.0",
152
131
  "typescript": "^5.9.2",
153
132
  "typescript-eslint": "^8.44.0",
154
- "vitest": "^3.2.6"
133
+ "vitest": "^3.2.6",
134
+ "@kb-labs/devkit": "2.116.11"
155
135
  },
156
136
  "engines": {
157
137
  "node": ">=22.0.0",
158
138
  "pnpm": ">=9.11.0"
159
139
  },
160
- "packageManager": "pnpm@9.11.0+sha512.0a203ffaed5a3f63242cd064c8fb5892366c103e328079318f78062f24ea8c9d50bc6a47aa3567cabefd824d170e78fa2745ed1f16b132e16436146b7688f19b",
161
140
  "peerDependencies": {
162
141
  "@playwright/test": "*",
163
142
  "eslint": "^9.35.0",
@@ -191,5 +170,25 @@
191
170
  },
192
171
  "publishConfig": {
193
172
  "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"
194
193
  }
195
- }
194
+ }