@nossen/morphing 1.0.0 → 2.0.0
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 +30 -8
- package/package.json +22 -7
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -2,33 +2,55 @@
|
|
|
2
2
|
|
|
3
3
|
Compact 4-byte value shapes and RGBA/cube helpers for low-friction transport.
|
|
4
4
|
|
|
5
|
+
## Overview
|
|
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.
|
|
10
|
+
|
|
5
11
|
## Install
|
|
6
12
|
|
|
7
13
|
```powershell
|
|
8
14
|
npm install @nossen/morphing
|
|
9
15
|
```
|
|
10
16
|
|
|
11
|
-
##
|
|
17
|
+
## Usage
|
|
12
18
|
|
|
13
19
|
```ts
|
|
14
|
-
import
|
|
20
|
+
import * as Morphing from "@nossen/morphing";
|
|
15
21
|
```
|
|
16
22
|
|
|
17
|
-
## Package
|
|
23
|
+
## Package Details
|
|
18
24
|
|
|
19
|
-
|
|
25
|
+
| Field | Value |
|
|
26
|
+
| --- | --- |
|
|
27
|
+
| Package | `@nossen/morphing` |
|
|
28
|
+
| Version | `1.0.0` |
|
|
29
|
+
| Type | TypeScript library |
|
|
30
|
+
| Registry scope | `@nossen` |
|
|
20
31
|
|
|
21
32
|
## Quality Gates
|
|
22
33
|
|
|
23
34
|
| Task | Command |
|
|
24
35
|
| --- | --- |
|
|
25
|
-
|
|
|
26
|
-
|
|
|
36
|
+
| build | `npm run build` |
|
|
37
|
+
| test | `npm run test` |
|
|
27
38
|
|
|
28
39
|
## Publishing
|
|
29
40
|
|
|
30
|
-
This package is
|
|
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.
|
|
42
|
+
|
|
43
|
+
## Support NOSSEN
|
|
44
|
+
|
|
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:
|
|
46
|
+
|
|
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/
|
|
31
52
|
|
|
53
|
+
Support is voluntary; there is no fixed package price.
|
|
32
54
|
## License
|
|
33
55
|
|
|
34
|
-
See the package license and repository files for terms.
|
|
56
|
+
See the package license and repository license files for terms.
|
package/package.json
CHANGED
|
@@ -1,9 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nossen/morphing",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
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
|
+
"policy": "voluntary",
|
|
13
|
+
"amount": "user-choice",
|
|
14
|
+
"email": "funeste38@gmail.com",
|
|
15
|
+
"wero": "+33783463761",
|
|
16
|
+
"weroDisplay": "+33 7 83 46 37 61",
|
|
17
|
+
"paypal": "https://paypal.me/funeste38",
|
|
18
|
+
"stripe": "https://buy.stripe.com/7sYfZhfKW2DSffZgWU7Re01",
|
|
19
|
+
"cardOrInvoice": "https://funesterie.me/contact/",
|
|
20
|
+
"contact": "https://funesterie.me/contact/"
|
|
21
|
+
},
|
|
7
22
|
"type": "module",
|
|
8
23
|
"main": "dist/morph.js",
|
|
9
24
|
"types": "dist/morph.d.ts",
|
|
@@ -14,12 +29,6 @@
|
|
|
14
29
|
},
|
|
15
30
|
"./package.json": "./package.json"
|
|
16
31
|
},
|
|
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
32
|
"files": [
|
|
24
33
|
"dist",
|
|
25
34
|
"README.md",
|
|
@@ -47,6 +56,12 @@
|
|
|
47
56
|
"binary",
|
|
48
57
|
"encoding"
|
|
49
58
|
],
|
|
59
|
+
"scripts": {
|
|
60
|
+
"build": "tsc -p tsconfig.json",
|
|
61
|
+
"dev": "tsc -w",
|
|
62
|
+
"prepare": "npm run build",
|
|
63
|
+
"test": "node test/smoke.mjs"
|
|
64
|
+
},
|
|
50
65
|
"devDependencies": {
|
|
51
66
|
"@types/node": "^24.10.1",
|
|
52
67
|
"typescript": "^5.9.3"
|