@voltro/workflow 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/CHANGELOG.md +52 -0
- package/LICENSE +57 -0
- package/README.md +26 -0
- package/SECURITY.md +56 -0
- package/THIRD-PARTY-NOTICES.md +409 -0
- package/dist/cluster-Cl6mB2rW.js +31 -0
- package/dist/cluster.d.ts +112 -0
- package/dist/cluster.js +2 -0
- package/dist/clusterTestSuite.d.ts +84 -0
- package/dist/clusterTestSuite.js +180 -0
- package/dist/index.d.ts +865 -0
- package/dist/index.js +3 -0
- package/dist/primitives-CWy1iu5w.js +111 -0
- package/dist/primitives.d.ts +229 -0
- package/dist/primitives.js +2 -0
- package/dist/src-CNeLb-4L.js +817 -0
- package/package.json +68 -0
package/package.json
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@voltro/workflow",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Durable workflows for Voltro — the workflow() descriptor + step() / awaitSignal primitives over @effect/cluster, with a browser-safe define subpath.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"voltro",
|
|
7
|
+
"typescript",
|
|
8
|
+
"framework"
|
|
9
|
+
],
|
|
10
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
11
|
+
"homepage": "https://voltro.dev",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"email": "support@voltro.dev"
|
|
14
|
+
},
|
|
15
|
+
"author": {
|
|
16
|
+
"name": "Voltro UG",
|
|
17
|
+
"url": "https://voltro.dev"
|
|
18
|
+
},
|
|
19
|
+
"type": "module",
|
|
20
|
+
"exports": {
|
|
21
|
+
".": {
|
|
22
|
+
"types": "./dist/index.d.ts",
|
|
23
|
+
"import": "./dist/index.js",
|
|
24
|
+
"default": "./dist/index.js"
|
|
25
|
+
},
|
|
26
|
+
"./define": {
|
|
27
|
+
"types": "./dist/primitives.d.ts",
|
|
28
|
+
"import": "./dist/primitives.js",
|
|
29
|
+
"default": "./dist/primitives.js"
|
|
30
|
+
},
|
|
31
|
+
"./cluster": {
|
|
32
|
+
"types": "./dist/cluster.d.ts",
|
|
33
|
+
"import": "./dist/cluster.js",
|
|
34
|
+
"default": "./dist/cluster.js"
|
|
35
|
+
},
|
|
36
|
+
"./cluster-suite": {
|
|
37
|
+
"types": "./dist/clusterTestSuite.d.ts",
|
|
38
|
+
"import": "./dist/clusterTestSuite.js",
|
|
39
|
+
"default": "./dist/clusterTestSuite.js"
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"main": "./dist/index.js",
|
|
43
|
+
"module": "./dist/index.js",
|
|
44
|
+
"types": "./dist/index.d.ts",
|
|
45
|
+
"sideEffects": false,
|
|
46
|
+
"engines": {
|
|
47
|
+
"node": ">=24.0.0"
|
|
48
|
+
},
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"@effect/cluster": "^0.59.0",
|
|
51
|
+
"@effect/sql": "^0.51.1",
|
|
52
|
+
"@effect/workflow": "^0.18.2",
|
|
53
|
+
"@voltro/database": "0.1.0",
|
|
54
|
+
"@voltro/protocol": "0.1.0"
|
|
55
|
+
},
|
|
56
|
+
"peerDependencies": {
|
|
57
|
+
"effect": "^3.21.4",
|
|
58
|
+
"vitest": "^4.0.0"
|
|
59
|
+
},
|
|
60
|
+
"peerDependenciesMeta": {
|
|
61
|
+
"vitest": {
|
|
62
|
+
"optional": true
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"publishConfig": {
|
|
66
|
+
"access": "public"
|
|
67
|
+
}
|
|
68
|
+
}
|