@nossen/morphing 1.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.
- package/LICENSE +1 -1
- package/README.md +55 -9
- package/package.json +18 -7
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -2,33 +2,79 @@
|
|
|
2
2
|
|
|
3
3
|
Compact 4-byte value shapes and RGBA/cube helpers for low-friction transport.
|
|
4
4
|
|
|
5
|
+
Use Morphing when values need a tiny, inspectable representation for runtime experiments, visual carriers or payload projections.
|
|
6
|
+
|
|
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.
|
|
16
|
+
|
|
5
17
|
## Install
|
|
6
18
|
|
|
7
|
-
```
|
|
19
|
+
```bash
|
|
8
20
|
npm install @nossen/morphing
|
|
9
21
|
```
|
|
10
22
|
|
|
11
23
|
## Quick Start
|
|
12
24
|
|
|
25
|
+
```bash
|
|
26
|
+
npm run build
|
|
27
|
+
npm test
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
## Library Usage
|
|
31
|
+
|
|
13
32
|
```ts
|
|
14
|
-
import
|
|
33
|
+
import * as morphing from "@nossen/morphing";
|
|
15
34
|
```
|
|
16
35
|
|
|
17
|
-
##
|
|
36
|
+
## Runtime Fit
|
|
18
37
|
|
|
19
|
-
|
|
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
|
+
|
|
47
|
+
## Package Details
|
|
48
|
+
|
|
49
|
+
| Field | Value |
|
|
50
|
+
| --- | --- |
|
|
51
|
+
| Package | `@nossen/morphing` |
|
|
52
|
+
| Version | `2.0.1` |
|
|
53
|
+
| Type | ESM library |
|
|
54
|
+
| CLI binaries | none |
|
|
55
|
+
| Registry scope | `@nossen` |
|
|
56
|
+
| Repository | `runtime/modules/morphing` |
|
|
20
57
|
|
|
21
58
|
## Quality Gates
|
|
22
59
|
|
|
23
|
-
|
|
|
60
|
+
| Field | Value |
|
|
24
61
|
| --- | --- |
|
|
25
|
-
|
|
|
26
|
-
|
|
|
62
|
+
| build | `tsc -p tsconfig.json` |
|
|
63
|
+
| test | `node test/smoke.mjs` |
|
|
27
64
|
|
|
28
65
|
## Publishing
|
|
29
66
|
|
|
30
|
-
This package is
|
|
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.
|
|
68
|
+
|
|
69
|
+
## Support NOSSEN
|
|
70
|
+
|
|
71
|
+
NOSSEN packages stay public and usable under their license. If this package helps your workflow, support Funesterie infrastructure, releases and maintenance through:
|
|
72
|
+
|
|
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/
|
|
31
77
|
|
|
32
78
|
## License
|
|
33
79
|
|
|
34
|
-
See the package license and repository files for terms.
|
|
80
|
+
See the package license and repository license files for terms.
|
package/package.json
CHANGED
|
@@ -1,9 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nossen/morphing",
|
|
3
|
-
"version": "
|
|
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",
|
|
7
|
+
"funding": {
|
|
8
|
+
"type": "custom",
|
|
9
|
+
"url": "https://paypal.me/funeste38"
|
|
10
|
+
},
|
|
11
|
+
"donations": {
|
|
12
|
+
"wero": "+33783463761",
|
|
13
|
+
"weroDisplay": "+33 7 83 46 37 61",
|
|
14
|
+
"paypal": "https://paypal.me/funeste38",
|
|
15
|
+
"stripe": "https://funesterie.me/subscription",
|
|
16
|
+
"contact": "https://funesterie.me/contact/"
|
|
17
|
+
},
|
|
7
18
|
"type": "module",
|
|
8
19
|
"main": "dist/morph.js",
|
|
9
20
|
"types": "dist/morph.d.ts",
|
|
@@ -14,12 +25,6 @@
|
|
|
14
25
|
},
|
|
15
26
|
"./package.json": "./package.json"
|
|
16
27
|
},
|
|
17
|
-
"scripts": {
|
|
18
|
-
"build": "tsc -p tsconfig.json",
|
|
19
|
-
"dev": "tsc -w",
|
|
20
|
-
"prepare": "npm run build",
|
|
21
|
-
"test": "node test/smoke.mjs"
|
|
22
|
-
},
|
|
23
28
|
"files": [
|
|
24
29
|
"dist",
|
|
25
30
|
"README.md",
|
|
@@ -47,6 +52,12 @@
|
|
|
47
52
|
"binary",
|
|
48
53
|
"encoding"
|
|
49
54
|
],
|
|
55
|
+
"scripts": {
|
|
56
|
+
"build": "tsc -p tsconfig.json",
|
|
57
|
+
"dev": "tsc -w",
|
|
58
|
+
"prepare": "npm run build",
|
|
59
|
+
"test": "node test/smoke.mjs"
|
|
60
|
+
},
|
|
50
61
|
"devDependencies": {
|
|
51
62
|
"@types/node": "^24.10.1",
|
|
52
63
|
"typescript": "^5.9.3"
|