@wrongstack/plugin-sdk 0.309.0 → 0.310.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.
Files changed (1) hide show
  1. package/package.json +5 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wrongstack/plugin-sdk",
3
- "version": "0.309.0",
3
+ "version": "0.310.0",
4
4
  "description": "Authoring SDK for WrongStack plugins — the plugin contract types, definePlugin, and shared runtime helpers. Third-party plugins should depend on this package only.",
5
5
  "license": "MIT",
6
6
  "author": "ECOSTACK TECHNOLOGY OÜ",
@@ -26,15 +26,15 @@
26
26
  "devDependencies": {
27
27
  "@types/node": "^26.2.0",
28
28
  "typescript": "^7.0.2",
29
- "vitest": "^4.1.10"
29
+ "vitest": "^4.1.11"
30
30
  },
31
31
  "dependencies": {
32
- "@wrongstack/core": "0.309.0",
33
- "@wrongstack/tools": "0.309.0"
32
+ "@wrongstack/tools": "0.310.0",
33
+ "@wrongstack/core": "0.310.0"
34
34
  },
35
35
  "scripts": {
36
36
  "build": "node ../../scripts/build-package.mjs",
37
- "typecheck": "tsc --noEmit",
37
+ "typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.test.json",
38
38
  "test": "vitest run --passWithNoTests",
39
39
  "test:watch": "vitest",
40
40
  "clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\""