@fest-lib/object 0.1.15 → 0.1.17

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 (3) hide show
  1. package/README.md +6 -8
  2. package/dist/object.js +377 -373
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -1,16 +1,14 @@
1
1
  # Object.TS
2
2
 
3
+ `@fest-lib/object` — reactive proxies, refs, computed/derived values, and collection observe for fest-lib. Sits above `@fest-lib/core`. LUR.E and FL.UI subscribe through `affected`.
4
+
3
5
  <img src="https://img.shields.io/github/license/fest-live/object.ts?style=flat-square" alt="License"> <img src="https://img.shields.io/github/stars/fest-live/object.ts?style=flat-square" alt="Stars"> <img src="https://img.shields.io/github/last-commit/fest-live/object.ts?style=flat-square" alt="Last Commit">
4
6
 
5
- [![npm version](https://img.shields.io/npm/v/object.ts?style=flat-square)](https://www.npmjs.com/package/@fest-lib/object.ts)
7
+ [![npm version](https://img.shields.io/npm/v/@fest-lib/object?style=flat-square)](https://www.npmjs.com/package/@fest-lib/object)
6
8
  [![Build Status](https://img.shields.io/github/actions/workflow/status/fest-live/object.ts/ci.yml?branch=main&style=flat-square)](https://github.com/fest-live/object.ts/actions)
7
9
  [![Coverage Status](https://img.shields.io/codecov/c/github/fest-live/object.ts?style=flat-square)](https://codecov.io/gh/fest-live/object.ts)
8
10
 
9
- ---
10
-
11
- **Object.ts** is a lightweight library providing reactive primitives and object utilities for JavaScript. It is a minor sibling of [`Uniform.TS`](https://github.com/fest-live/uniform.ts), originally created in early 2024 and partially revisited in 2025. The library is primarily used in internal projects and is designed to be compatible with modern reactive libraries.
12
-
13
- The current version provides a comprehensive reactivity system with non-intrusive subscriptions, efficient change detection, and compatibility with modern JavaScript frameworks.
11
+ Subscriptions do not retain the target. Updates fire only on actual value changes.
14
12
 
15
13
  ## Table of Contents
16
14
 
@@ -59,7 +57,7 @@ The current version provides a comprehensive reactivity system with non-intrusiv
59
57
  ### Install
60
58
 
61
59
  ```bash
62
- npm i @fest-lib/object.ts
60
+ npm i @fest-lib/object
63
61
  ```
64
62
 
65
63
  ### Importing
@@ -114,7 +112,7 @@ import {
114
112
  createReactive,
115
113
  createReactiveMap,
116
114
  createReactiveSet
117
- } from "@fest-lib/object.ts";
115
+ } from "@fest-lib/object";
118
116
  ```
119
117
 
120
118
  ### Quick start