@geonosis/workflows 0.2.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,58 @@
1
+ {
2
+ "name": "@geonosis/workflows",
3
+ "version": "0.2.0",
4
+ "types": "./dist/index.d.ts",
5
+ "description": "A workflow engine with one door: named steps whose compensation travels with them, a body that is a real async function with real values, and a journal contract whose run lifecycle, transactional outbox and reverse-start unwinding are model-checked.",
6
+ "keywords": [
7
+ "workflow",
8
+ "saga",
9
+ "compensation",
10
+ "outbox",
11
+ "durable-execution"
12
+ ],
13
+ "homepage": "https://github.com/microcompanies/geonosis/tree/main/foundations/workflows",
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/microcompanies/geonosis.git",
17
+ "directory": "foundations/workflows"
18
+ },
19
+ "license": "Apache-2.0",
20
+ "type": "module",
21
+ "main": "dist/index.cjs",
22
+ "sideEffects": false,
23
+ "exports": {
24
+ ".": {
25
+ "import": {
26
+ "types": "./dist/index.d.ts",
27
+ "default": "./dist/index.js"
28
+ },
29
+ "require": {
30
+ "types": "./dist/index.d.cts",
31
+ "default": "./dist/index.cjs"
32
+ }
33
+ }
34
+ },
35
+ "files": [
36
+ "dist"
37
+ ],
38
+ "dependencies": {
39
+ "@geonosis/conformance": "^0.2.0",
40
+ "@geonosis/events": "^1.5.0"
41
+ },
42
+ "engines": {
43
+ "node": ">=22"
44
+ },
45
+ "publishConfig": {
46
+ "access": "public"
47
+ },
48
+ "devDependencies": {
49
+ "@cloudflare/vitest-pool-workers": "^0.12.21",
50
+ "@cloudflare/workers-types": "^5.20260901.1"
51
+ },
52
+ "scripts": {
53
+ "build": "tsup",
54
+ "test:workerd": "vitest run --config vitest.workerd.config.ts",
55
+ "typecheck": "tsc --noEmit",
56
+ "typecheck:workerd": "tsc --noEmit -p workerd/tsconfig.json"
57
+ }
58
+ }