@nossen/morphing 2.0.0 → 2.0.1

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 (2) hide show
  1. package/README.md +44 -20
  2. package/package.json +2 -6
package/README.md CHANGED
@@ -2,55 +2,79 @@
2
2
 
3
3
  Compact 4-byte value shapes and RGBA/cube helpers for low-friction transport.
4
4
 
5
- ## Overview
5
+ Use Morphing when values need a tiny, inspectable representation for runtime experiments, visual carriers or payload projections.
6
6
 
7
- - Encodes compact values for transport between runtime modules.
8
- - Provides RGBA and cube helpers for visual/binary workflows.
9
- - Keeps low-level value shape logic independent from higher-level orchestration.
7
+ ## Why It Exists
8
+
9
+ The NOSSEN package train is the small-module layer behind Funesterie, A11, QFlush and local agent coordination. Each package owns one bounded runtime concern so automation remains inspectable instead of turning into an opaque blob.
10
+
11
+ ## Core Capabilities
12
+
13
+ - Models compact byte and RGBA-shaped values.
14
+ - Supports lightweight projection and conversion helpers.
15
+ - Pairs with Freeland Bros for diagnostics.
10
16
 
11
17
  ## Install
12
18
 
13
- ```powershell
19
+ ```bash
14
20
  npm install @nossen/morphing
15
21
  ```
16
22
 
17
- ## Usage
23
+ ## Quick Start
24
+
25
+ ```bash
26
+ npm run build
27
+ npm test
28
+ ```
29
+
30
+ ## Library Usage
18
31
 
19
32
  ```ts
20
- import * as Morphing from "@nossen/morphing";
33
+ import * as morphing from "@nossen/morphing";
21
34
  ```
22
35
 
36
+ ## Runtime Fit
37
+
38
+ - @nossen/morphing is part of the NOSSEN runtime module graph.
39
+ - Pairs with @nossen/freeland-bros.
40
+ - Pairs with @nossen/nezlephant.
41
+
42
+ ## Safety Model
43
+
44
+ - Small payload helper, not encryption.
45
+ - Do not treat visual encoding as secrecy.
46
+
23
47
  ## Package Details
24
48
 
25
49
  | Field | Value |
26
50
  | --- | --- |
27
51
  | Package | `@nossen/morphing` |
28
- | Version | `1.0.0` |
29
- | Type | TypeScript library |
52
+ | Version | `2.0.1` |
53
+ | Type | ESM library |
54
+ | CLI binaries | none |
30
55
  | Registry scope | `@nossen` |
56
+ | Repository | `runtime/modules/morphing` |
31
57
 
32
58
  ## Quality Gates
33
59
 
34
- | Task | Command |
60
+ | Field | Value |
35
61
  | --- | --- |
36
- | build | `npm run build` |
37
- | test | `npm run test` |
62
+ | build | `tsc -p tsconfig.json` |
63
+ | test | `node test/smoke.mjs` |
38
64
 
39
65
  ## Publishing
40
66
 
41
- This package is part of the NOSSEN package train. Before publishing, run the quality gates, inspect `npm pack --dry-run`, then publish the immutable version to npmjs and mirror the same version to the Funesterie JFrog npm registry.
67
+ This package is part of the NOSSEN package train. Before publishing, run the quality gates, inspect `npm pack --dry-run`, then publish the immutable version to npmjs and mirror the same version to the Funesterie package backups.
42
68
 
43
69
  ## Support NOSSEN
44
70
 
45
- NOSSEN packages stay public and usable under their license. If this package helps your workflow, choose any support amount that fits your situation. Contributions support Funesterie infrastructure, releases, and maintenance:
71
+ NOSSEN packages stay public and usable under their license. If this package helps your workflow, support Funesterie infrastructure, releases and maintenance through:
46
72
 
47
- - Email: funeste38@gmail.com
48
- - Wero: `+33 7 83 46 37 61` (choose your amount)
49
- - PayPal: https://paypal.me/funeste38 (choose your amount)
50
- - Stripe/card support: https://buy.stripe.com/7sYfZhfKW2DSffZgWU7Re01
51
- - Contact, invoice, sponsorship or custom support: https://funesterie.me/contact/
73
+ - Wero: `+33 7 83 46 37 61`
74
+ - PayPal: https://paypal.me/funeste38
75
+ - Stripe/card checkout: https://funesterie.me/subscription
76
+ - Custom support or invoice: https://funesterie.me/contact/
52
77
 
53
- Support is voluntary; there is no fixed package price.
54
78
  ## License
55
79
 
56
80
  See the package license and repository license files for terms.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nossen/morphing",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "Compact 4-byte value shapes and RGBA/cube helpers for low-friction transport.",
5
5
  "author": "NOSSEN <contact@funesterie.me>",
6
6
  "license": "MIT",
@@ -9,14 +9,10 @@
9
9
  "url": "https://paypal.me/funeste38"
10
10
  },
11
11
  "donations": {
12
- "policy": "voluntary",
13
- "amount": "user-choice",
14
- "email": "funeste38@gmail.com",
15
12
  "wero": "+33783463761",
16
13
  "weroDisplay": "+33 7 83 46 37 61",
17
14
  "paypal": "https://paypal.me/funeste38",
18
- "stripe": "https://buy.stripe.com/7sYfZhfKW2DSffZgWU7Re01",
19
- "cardOrInvoice": "https://funesterie.me/contact/",
15
+ "stripe": "https://funesterie.me/subscription",
20
16
  "contact": "https://funesterie.me/contact/"
21
17
  },
22
18
  "type": "module",