@systemfsoftware/effect-daemon-spec 0.7.2 → 2.0.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 +189 -0
- package/LICENSE +203 -21
- package/dist/effect-daemon-spec.d.ts +105 -154
- package/dist/index.d.ts +131 -175
- package/dist/index.mjs +469 -339
- package/package.json +25 -24
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@systemfsoftware/effect-daemon-spec",
|
|
3
|
-
"license": "
|
|
4
|
-
"version": "0.
|
|
3
|
+
"license": "Apache-2.0",
|
|
4
|
+
"version": "2.0.0",
|
|
5
5
|
"author": "Ryan Lee <drdgvhbh@gmail.com>",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "git+https://github.com/systemfsoftware/systemfsoftware.git",
|
|
9
|
-
"directory": "packages/effect
|
|
9
|
+
"directory": "packages/core/effect/daemon-spec"
|
|
10
10
|
},
|
|
11
|
-
"homepage": "https://github.com/systemfsoftware/systemfsoftware/tree/main/packages/effect
|
|
11
|
+
"homepage": "https://github.com/systemfsoftware/systemfsoftware/tree/main/packages/core/effect/daemon-spec#readme",
|
|
12
12
|
"bugs": "https://github.com/systemfsoftware/systemfsoftware/issues",
|
|
13
13
|
"description": "Supervision-tree daemons for Effect-TS — leader election, distributed locks, restart-intensity backoff, dynamic children, and health latches as a pure typed core.",
|
|
14
14
|
"keywords": [
|
|
@@ -36,32 +36,33 @@
|
|
|
36
36
|
"files": [
|
|
37
37
|
"dist"
|
|
38
38
|
],
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"@systemfsoftware/effect-cell-types": "^3.0.0"
|
|
41
|
+
},
|
|
39
42
|
"devDependencies": {
|
|
40
|
-
"@effect/vitest": "0.
|
|
43
|
+
"@effect/vitest": "4.0.0-rc.108",
|
|
41
44
|
"@microsoft/api-extractor": "^7.58.7",
|
|
42
|
-
"@
|
|
45
|
+
"@systemfsoftware/arethetypeswrong-cli": "^1.1.1",
|
|
43
46
|
"@types/node": "^24",
|
|
44
47
|
"@vitest/coverage-v8": "^4",
|
|
45
|
-
"effect": "
|
|
46
|
-
"fast-check": "^
|
|
48
|
+
"effect": "4.0.0-rc.108",
|
|
49
|
+
"fast-check": "^4",
|
|
50
|
+
"oxlint": "^1.77.0",
|
|
47
51
|
"rimraf": "^6.1.3",
|
|
48
|
-
"tsdown": "^0.22.
|
|
49
|
-
"
|
|
50
|
-
"vitest": "^4",
|
|
51
|
-
"@systemfsoftware/effect-
|
|
52
|
-
"@systemfsoftware/effect-
|
|
53
|
-
"@systemfsoftware/
|
|
54
|
-
"@systemfsoftware/effect-schema-law": "^0.6.1",
|
|
55
|
-
"@systemfsoftware/effect-schema-vite": "^1.5.1",
|
|
52
|
+
"tsdown": "^0.22.14",
|
|
53
|
+
"typescript": "^7",
|
|
54
|
+
"vitest": "^4.1.10",
|
|
55
|
+
"@systemfsoftware/effect-gherkin-spec": "^2.0.0",
|
|
56
|
+
"@systemfsoftware/effect-schema-law": "^0.8.0",
|
|
57
|
+
"@systemfsoftware/effect-schema-vite": "^1.5.3",
|
|
56
58
|
"@systemfsoftware/oxlint-config": "^0.1.0",
|
|
57
|
-
"@systemfsoftware/
|
|
58
|
-
"@systemfsoftware/stryker-
|
|
59
|
-
"@systemfsoftware/tsconfig": "^1.3.1",
|
|
59
|
+
"@systemfsoftware/oxlint-plugin-cell-vocabulary": "^1.2.0",
|
|
60
|
+
"@systemfsoftware/stryker-plugins": "^0.13.0",
|
|
60
61
|
"@systemfsoftware/vitest-config": "^0.1.0",
|
|
61
|
-
"@systemfsoftware/
|
|
62
|
+
"@systemfsoftware/tsconfig": "^1.3.3"
|
|
62
63
|
},
|
|
63
64
|
"peerDependencies": {
|
|
64
|
-
"effect": "
|
|
65
|
+
"effect": "4.0.0-rc.108"
|
|
65
66
|
},
|
|
66
67
|
"publishConfig": {
|
|
67
68
|
"provenance": true
|
|
@@ -72,9 +73,9 @@
|
|
|
72
73
|
"typecheck": "tsc --noEmit --incremental",
|
|
73
74
|
"test": "vitest run",
|
|
74
75
|
"test:run": "vitest run",
|
|
75
|
-
"mutation": "stryker run
|
|
76
|
-
"mutation:full": "stryker run",
|
|
77
|
-
"lint": "oxlint .
|
|
76
|
+
"mutation": "stryker run",
|
|
77
|
+
"mutation:full": "stryker run --force",
|
|
78
|
+
"lint": "f=${OXLINT_FORMAT:-${AGENT:+agent}}; oxlint . --format=${f:-default}",
|
|
78
79
|
"api:check": "api-extractor run",
|
|
79
80
|
"api:update": "api-extractor run --local",
|
|
80
81
|
"attw": "attw --pack ."
|