dsh-taskboard 0.6.1 → 0.6.2

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,7 +1,7 @@
1
1
  {
2
2
  "name": "dsh-taskboard",
3
3
  "description": "Agent-first task board for the DSH web GUI: host-authoritative task ledger with taskboard_* agent tools, project (= workspace) claim boundaries, per-task model execution in fresh sessions, optional per-task git-worktree isolation (dedicated task branches, commit evidence, one-click merge), host-side cron scheduling, and a live SSE kanban view. Mounts via the official dsh plugin system — no DSH source changes.",
4
- "version": "0.6.1",
4
+ "version": "0.6.2",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
7
7
  "exports": {
@@ -17,6 +17,13 @@
17
17
  "client": {
18
18
  "inject": [],
19
19
  "platform": "web"
20
+ },
21
+ "compatibility": {
22
+ "dshReleases": {
23
+ "0.1.0-rc.8": "unknown",
24
+ "0.1.1-rc.1": "unknown",
25
+ "0.1.1-rc.2": "compatible"
26
+ }
20
27
  }
21
28
  },
22
29
  "files": [
@@ -27,6 +34,9 @@
27
34
  "LICENSE"
28
35
  ],
29
36
  "license": "Apache-2.0",
37
+ "engines": {
38
+ "node": ">=22"
39
+ },
30
40
  "author": "cloader",
31
41
  "repository": {
32
42
  "type": "git",
@@ -6,4 +6,4 @@
6
6
  */
7
7
 
8
8
  /** The package version (must equal package.json "version"). */
9
- export const PLUGIN_VERSION = '0.6.1'
9
+ export const PLUGIN_VERSION = '0.6.2'