@jagreehal/workflow 1.1.0 → 1.3.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jagreehal/workflow",
3
- "version": "1.1.0",
3
+ "version": "1.3.0",
4
4
  "type": "module",
5
5
  "description": "Typed async workflows with automatic error inference. Build type-safe workflows with Result types, step caching, resume state, and human-in-the-loop support.",
6
6
  "main": "./dist/index.cjs",
@@ -21,6 +21,11 @@
21
21
  "types": "./dist/workflow.d.ts",
22
22
  "import": "./dist/workflow.js",
23
23
  "require": "./dist/workflow.cjs"
24
+ },
25
+ "./visualize": {
26
+ "types": "./dist/visualize.d.ts",
27
+ "import": "./dist/visualize.js",
28
+ "require": "./dist/visualize.cjs"
24
29
  }
25
30
  },
26
31
  "files": [
@@ -108,6 +113,7 @@
108
113
  "test:watch": "vitest watch",
109
114
  "test:coverage": "vitest run --coverage",
110
115
  "lint": "eslint .",
116
+ "tsd": "tsd --files 'src/**/*.test-d.ts'",
111
117
  "clean": "rm -rf dist lib",
112
118
  "prebuild": "pnpm clean",
113
119
  "changeset": "changeset",