@coinlist-co/react 0.10.1 → 0.11.1-rc.10770e8

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.
Files changed (38) hide show
  1. package/README.md +32 -0
  2. package/dist/chunk-7CTH4KPU.js +2399 -0
  3. package/dist/chunk-7CTH4KPU.js.map +1 -0
  4. package/dist/{chunk-AQVCOWOV.js → chunk-LSPZETDH.js} +249 -317
  5. package/dist/chunk-LSPZETDH.js.map +1 -0
  6. package/dist/chunk-UZUQALFY.js +279 -0
  7. package/dist/chunk-UZUQALFY.js.map +1 -0
  8. package/dist/client/index.cjs +13430 -3308
  9. package/dist/client/index.cjs.map +1 -1
  10. package/dist/client/index.d.cts +5486 -899
  11. package/dist/client/index.d.ts +5486 -899
  12. package/dist/client/index.js +11025 -2388
  13. package/dist/client/index.js.map +1 -1
  14. package/dist/collections-BBI_XydI.d.cts +116 -0
  15. package/dist/collections-BrX9rRWc.d.ts +116 -0
  16. package/dist/config-CMl1bR3F.d.cts +2959 -0
  17. package/dist/config-CMl1bR3F.d.ts +2959 -0
  18. package/dist/server/index.cjs +1768 -511
  19. package/dist/server/index.cjs.map +1 -1
  20. package/dist/server/index.d.cts +266 -162
  21. package/dist/server/index.d.ts +266 -162
  22. package/dist/server/index.js +235 -169
  23. package/dist/server/index.js.map +1 -1
  24. package/dist/shared/index.cjs +2423 -926
  25. package/dist/shared/index.cjs.map +1 -1
  26. package/dist/shared/index.d.cts +325 -132
  27. package/dist/shared/index.d.ts +325 -132
  28. package/dist/shared/index.js +112 -28
  29. package/package.json +12 -8
  30. package/dist/chunk-AQVCOWOV.js.map +0 -1
  31. package/dist/chunk-TBU3EBNM.js +0 -442
  32. package/dist/chunk-TBU3EBNM.js.map +0 -1
  33. package/dist/chunk-UOHD7US2.js +0 -855
  34. package/dist/chunk-UOHD7US2.js.map +0 -1
  35. package/dist/collections-Bv1Oxzu_.d.ts +0 -28
  36. package/dist/collections-DDyxbOPZ.d.cts +0 -28
  37. package/dist/requirement-oVZA1INj.d.cts +0 -1040
  38. package/dist/requirement-oVZA1INj.d.ts +0 -1040
package/README.md CHANGED
@@ -5,3 +5,35 @@ This package is documented at:
5
5
  https://docs.coinlist.co/
6
6
 
7
7
  Please refer to the docs site for installation, configuration, and integration guides.
8
+
9
+ ## Local development
10
+
11
+ The toolchain (Node 24, TypeScript) is pinned by `flake.nix` and frozen by `flake.lock`.
12
+
13
+ Prerequisites:
14
+
15
+ 1. Nix — install with the [Determinate Systems installer](https://github.com/DeterminateSystems/nix-installer),
16
+ which enables flakes out of the box and supports clean uninstalls:
17
+
18
+ ```bash
19
+ curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix | sh -s -- install
20
+ ```
21
+
22
+ 2. [direnv](https://direnv.net/) and [nix-direnv](https://github.com/nix-community/nix-direnv)
23
+ (direnv on its own does not provide `use flake`).
24
+
25
+ ```bash
26
+ direnv allow # activates the dev shell on every cd into the repo
27
+ ```
28
+
29
+ Without direnv, enter the same shell manually:
30
+
31
+ ```bash
32
+ nix develop
33
+ ```
34
+
35
+ The flake provides the toolchain, not `node_modules` — install JS dependencies as usual:
36
+
37
+ ```bash
38
+ npm ci
39
+ ```