@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.
Files changed (3) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +55 -9
  3. package/package.json +18 -7
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2026 funeste38
3
+ Copyright (c) 2026 nossen
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
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
- ```powershell
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 { enigma } from "@nossen/morphing";
33
+ import * as morphing from "@nossen/morphing";
15
34
  ```
16
35
 
17
- ## Package Scope
36
+ ## Runtime Fit
18
37
 
19
- This is the NOSSEN distribution of `@funeste38/morphing`. New projects should use `@nossen/morphing`. Existing projects can migrate by replacing imports from `@funeste38/morphing` with `@nossen/morphing`.
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
- | Task | Command |
60
+ | Field | Value |
24
61
  | --- | --- |
25
- | Build | `npm run build` |
26
- | Test | `npm test` |
62
+ | build | `tsc -p tsconfig.json` |
63
+ | test | `node test/smoke.mjs` |
27
64
 
28
65
  ## Publishing
29
66
 
30
- This package is published as `@nossen/morphing@1.0.0` and mirrored to the Funesterie JFrog npm registry. Keep runtime files limited through the `files` field before publishing.
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": "1.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",
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"