@wrongstack/core 0.308.4 → 0.308.6

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.
Files changed (1) hide show
  1. package/package.json +4 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wrongstack/core",
3
- "version": "0.308.4",
3
+ "version": "0.308.6",
4
4
  "license": "MIT",
5
5
  "description": "WrongStack core: kernel, types, defaults, and shared utilities for the WrongStack CLI agent.",
6
6
  "repository": {
@@ -182,8 +182,8 @@
182
182
  "wrongstackApiVersion": "0.1.10",
183
183
  "dependencies": {
184
184
  "zod": "4.4.3",
185
- "@wrongstack/persistence": "0.308.4",
186
- "@wrongstack/kanban": "0.308.4"
185
+ "@wrongstack/kanban": "0.308.6",
186
+ "@wrongstack/persistence": "0.308.6"
187
187
  },
188
188
  "devDependencies": {
189
189
  "@types/node": "^26.2.0",
@@ -199,6 +199,7 @@
199
199
  "build": "node ../../scripts/build-package.mjs",
200
200
  "build:prompts": "node scripts/build-prompts.mjs",
201
201
  "typecheck": "tsc --noEmit",
202
+ "typecheck:tests": "tsc --noEmit -p tsconfig.test.json",
202
203
  "test": "vitest run --root ../.. packages/core/tests",
203
204
  "clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\""
204
205
  }