work-ctrl-flow-logic 0.1.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 ADDED
@@ -0,0 +1,26 @@
1
+ {
2
+ "name": "work-ctrl-flow-logic",
3
+ "version": "0.1.0",
4
+ "private": false,
5
+ "description": "WorkCtrlFlow 引擎:可中断可恢复的动态工作流(快照重放 + WaitHandle/ResumeSignal)",
6
+ "type": "module",
7
+ "main": "./src/index.ts",
8
+ "exports": {
9
+ ".": "./src/index.ts",
10
+ "./browser": "./src/browser.ts",
11
+ "./filesystem": "./src/filesystem.ts"
12
+ },
13
+ "dependencies": {
14
+ "depa-behavior-tree": "0.1.0",
15
+ "instant-ctrl-flow-logic": "0.1.0",
16
+ "instant-ctrl-flow-contract": "0.1.0",
17
+ "work-ctrl-flow-contract": "0.1.0"
18
+ },
19
+ "files": [
20
+ "src"
21
+ ],
22
+ "publishConfig": {
23
+ "access": "public",
24
+ "registry": "https://registry.npmjs.com"
25
+ }
26
+ }
package/src/browser.ts ADDED
@@ -0,0 +1 @@
1
+ export * from './engine.js';