@systemfsoftware/effect-atom 0.5.3
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/LICENSE +231 -0
- package/README.md +30 -0
- package/dist/Atom-BgqgP-Qc.d.ts +1287 -0
- package/dist/Atom-BhgqoTsf.mjs +1348 -0
- package/dist/Atom-CxKJ3i4d.d.ts +1257 -0
- package/dist/Atom-DGWqaX9a.d.ts +1257 -0
- package/dist/Atom-DVWTGeoV.mjs +1449 -0
- package/dist/Atom-NsW01Gu1.mjs +1348 -0
- package/dist/Atom.d.ts +2 -0
- package/dist/Atom.mjs +2 -0
- package/dist/AtomHttpApi.d.ts +74 -0
- package/dist/AtomHttpApi.mjs +129 -0
- package/dist/AtomRef.d.ts +91 -0
- package/dist/AtomRef.mjs +248 -0
- package/dist/AtomRpc.d.ts +73 -0
- package/dist/AtomRpc.mjs +111 -0
- package/dist/Hydration.d.ts +75 -0
- package/dist/Hydration.mjs +113 -0
- package/dist/Registry-B1ULaW2_.mjs +769 -0
- package/dist/Registry-BE4aKSZk.mjs +823 -0
- package/dist/Registry-DhP1TSer.mjs +769 -0
- package/dist/Registry.d.ts +2 -0
- package/dist/Registry.mjs +2 -0
- package/dist/Result-B2vSp_sE.d.ts +480 -0
- package/dist/Result-BHH-qTvm.d.ts +491 -0
- package/dist/Result-CAjFdzam.d.ts +490 -0
- package/dist/Result-D8FNEzuX.mjs +633 -0
- package/dist/Result-DwtHFH70.mjs +663 -0
- package/dist/Result-rlUvoHzK.mjs +624 -0
- package/dist/Result.d.ts +2 -0
- package/dist/Result.mjs +2 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.mjs +8 -0
- package/dist/rolldown-runtime-D7D4PA-g.mjs +13 -0
- package/package.json +94 -0
package/package.json
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@systemfsoftware/effect-atom",
|
|
3
|
+
"license": "Apache-2.0",
|
|
4
|
+
"version": "0.5.3",
|
|
5
|
+
"author": "Ryan Lee <drdgvhbh@gmail.com>",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/systemfsoftware/systemfsoftware.git",
|
|
9
|
+
"directory": "packages/effect-atom/atom"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://github.com/systemfsoftware/systemfsoftware/tree/main/packages/effect-atom/atom#readme",
|
|
12
|
+
"bugs": "https://github.com/systemfsoftware/systemfsoftware/issues",
|
|
13
|
+
"description": "Reactive toolkit for Effect — forked under systemfsoftware from tim-smart/effect-atom.",
|
|
14
|
+
"keywords": [
|
|
15
|
+
"effect",
|
|
16
|
+
"effect-ts",
|
|
17
|
+
"atom",
|
|
18
|
+
"reactive",
|
|
19
|
+
"state"
|
|
20
|
+
],
|
|
21
|
+
"type": "module",
|
|
22
|
+
"exports": {
|
|
23
|
+
".": {
|
|
24
|
+
"types": "./dist/index.d.ts",
|
|
25
|
+
"default": "./dist/index.mjs"
|
|
26
|
+
},
|
|
27
|
+
"./Atom": {
|
|
28
|
+
"types": "./dist/Atom.d.ts",
|
|
29
|
+
"default": "./dist/Atom.mjs"
|
|
30
|
+
},
|
|
31
|
+
"./AtomHttpApi": {
|
|
32
|
+
"types": "./dist/AtomHttpApi.d.ts",
|
|
33
|
+
"default": "./dist/AtomHttpApi.mjs"
|
|
34
|
+
},
|
|
35
|
+
"./AtomRef": {
|
|
36
|
+
"types": "./dist/AtomRef.d.ts",
|
|
37
|
+
"default": "./dist/AtomRef.mjs"
|
|
38
|
+
},
|
|
39
|
+
"./AtomRpc": {
|
|
40
|
+
"types": "./dist/AtomRpc.d.ts",
|
|
41
|
+
"default": "./dist/AtomRpc.mjs"
|
|
42
|
+
},
|
|
43
|
+
"./Hydration": {
|
|
44
|
+
"types": "./dist/Hydration.d.ts",
|
|
45
|
+
"default": "./dist/Hydration.mjs"
|
|
46
|
+
},
|
|
47
|
+
"./Registry": {
|
|
48
|
+
"types": "./dist/Registry.d.ts",
|
|
49
|
+
"default": "./dist/Registry.mjs"
|
|
50
|
+
},
|
|
51
|
+
"./Result": {
|
|
52
|
+
"types": "./dist/Result.d.ts",
|
|
53
|
+
"default": "./dist/Result.mjs"
|
|
54
|
+
},
|
|
55
|
+
"./package.json": "./package.json"
|
|
56
|
+
},
|
|
57
|
+
"files": [
|
|
58
|
+
"dist"
|
|
59
|
+
],
|
|
60
|
+
"dependencies": {},
|
|
61
|
+
"peerDependencies": {
|
|
62
|
+
"effect": "4.0.0-rc.108"
|
|
63
|
+
},
|
|
64
|
+
"devDependencies": {
|
|
65
|
+
"@effect/vitest": "4.0.0-rc.108",
|
|
66
|
+
"@systemfsoftware/arethetypeswrong-cli": "^1.1.1",
|
|
67
|
+
"@types/node": "^24",
|
|
68
|
+
"effect": "4.0.0-rc.108",
|
|
69
|
+
"oxlint": "^1.77.0",
|
|
70
|
+
"rimraf": "^6.1.3",
|
|
71
|
+
"tsdown": "^0.22.14",
|
|
72
|
+
"type-fest": "^5.8.0",
|
|
73
|
+
"typescript": "^7",
|
|
74
|
+
"vitest": "^4.1.10",
|
|
75
|
+
"@systemfsoftware/effect-gherkin-spec": "^0.5.1",
|
|
76
|
+
"@systemfsoftware/tsconfig": "^1.3.1",
|
|
77
|
+
"@systemfsoftware/vitest-config": "^0.1.0",
|
|
78
|
+
"@systemfsoftware/oxlint-config": "^0.1.0"
|
|
79
|
+
},
|
|
80
|
+
"publishConfig": {
|
|
81
|
+
"provenance": true
|
|
82
|
+
},
|
|
83
|
+
"scripts": {
|
|
84
|
+
"clean": "rimraf dist",
|
|
85
|
+
"build": "tsdown && pnpm dts:check",
|
|
86
|
+
"typecheck": "tsc --noEmit --incremental",
|
|
87
|
+
"test": "vitest run --passWithNoTests",
|
|
88
|
+
"test:watch": "vitest",
|
|
89
|
+
"lint": "f=${OXLINT_FORMAT:-${AGENT:+agent}}; oxlint . --config oxlint.config.ts --format=${f:-default}",
|
|
90
|
+
"lint:tsgo": "effect-tsgo diagnostics --project tsconfig.json --format ${TSGO_FORMAT:-text}",
|
|
91
|
+
"attw": "attw --pack .",
|
|
92
|
+
"dts:check": "tsc --noEmit -p tsconfig.dts.json"
|
|
93
|
+
}
|
|
94
|
+
}
|