@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/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
+ }