@packvium/engine 0.1.2 → 0.1.3
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/README.md +3 -0
- package/index.js +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -126,6 +126,9 @@ One request and result contract, implemented independently in four engines (Rust
|
|
|
126
126
|
Python, PHP, JavaScript) and held to identical placements on a shared fixture set.
|
|
127
127
|
Pick the package for your stack; mixing them in one system is safe.
|
|
128
128
|
|
|
129
|
+
Documentation, the constraint reference and the benchmarks are at
|
|
130
|
+
[packvium.com](https://packvium.com).
|
|
131
|
+
|
|
129
132
|
| Package | Install | Source |
|
|
130
133
|
| --- | --- | --- |
|
|
131
134
|
| Python — [`packvium`](https://pypi.org/project/packvium/) | `pip install packvium` | [packvium-python](https://github.com/toxakara/packvium-python) |
|
package/index.js
CHANGED
|
@@ -29,7 +29,7 @@ export function rebalanceWeight(request,result,{maxMoves=64}={}){
|
|
|
29
29
|
}
|
|
30
30
|
return rebalanceFallback(request,result,{maxMoves});
|
|
31
31
|
}
|
|
32
|
-
export const version=()=>native?.version?.()??'0.1.
|
|
32
|
+
export const version=()=>native?.version?.()??'0.1.3-js-fallback';
|
|
33
33
|
|
|
34
34
|
/**
|
|
35
35
|
* The exported commercial and control-plane API: a quote, a policy decision and catalog
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name":"@packvium/engine",
|
|
3
|
-
"version":"0.1.
|
|
3
|
+
"version":"0.1.3",
|
|
4
4
|
"description":"Native-first 3D cartonization with deterministic JS fallback",
|
|
5
5
|
"keywords":["3d-bin-packing","bin-packing","cartonization","packing","container-loading","logistics","shipping","deterministic"],
|
|
6
|
-
"homepage":"https://
|
|
6
|
+
"homepage":"https://packvium.com",
|
|
7
7
|
"repository":{"type":"git","url":"git+https://github.com/toxakara/packvium-node.git"},
|
|
8
8
|
"bugs":{"url":"https://github.com/toxakara/packvium-node/issues"},
|
|
9
9
|
"type":"module",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"exports":{".":{"types":"./index.d.ts","import":"./index.js"}},
|
|
13
13
|
"files":["index.js","fallback.js","contact-graph.js","policy.js","commerce.js","commerce-model.js","examples","index.d.ts","README.md","SECURITY.md"],
|
|
14
14
|
"engines":{"node":">=16"},
|
|
15
|
-
"optionalDependencies":{"@packvium/native":"0.1.
|
|
15
|
+
"optionalDependencies":{"@packvium/native":"0.1.3"},
|
|
16
16
|
"scripts":{
|
|
17
17
|
"test":"node --test \"test/*.test.mjs\"",
|
|
18
18
|
"test:legacy":"node test/legacy-conformance.mjs"
|