calculate-packing 0.0.12 → 0.0.13
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/dist/index.d.ts +49 -28
- package/dist/index.js +1090 -736
- package/package.json +2 -1
package/package.json
CHANGED
|
@@ -2,12 +2,13 @@
|
|
|
2
2
|
"name": "calculate-packing",
|
|
3
3
|
"main": "dist/index.js",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"version": "0.0.
|
|
5
|
+
"version": "0.0.13",
|
|
6
6
|
"description": "Calculate a packing layout with support for different strategy configurations",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"start": "cosmos",
|
|
9
9
|
"format": "biome format --write .",
|
|
10
10
|
"format:check": "biome format .",
|
|
11
|
+
"typecheck": "tsc --noEmit",
|
|
11
12
|
"build": "tsup-node lib/index.ts --format esm --dts --outDir dist",
|
|
12
13
|
"build:site": "cosmos-export"
|
|
13
14
|
},
|