{
  "name": "@cratefit/pack",
  "version": "0.1.1",
  "description": "3D Bin Packing Library - Optimize container, pallet, and truck loading",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "files": [
    "dist",
    "LICENSE",
    "README.md"
  ],
  "scripts": {
    "build": "tsup && pnpm run build:types",
    "build:types": "dts-bundle-generator -o dist/index.d.ts src/index.ts --no-check && cp dist/index.d.ts dist/index.d.cts",
    "dev": "tsup --watch",
    "clean": "rm -rf dist *.tsbuildinfo",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "pnpm run build"
  },
  "keywords": [
    "bin-packing",
    "3d-packing",
    "3d-bin-packing",
    "container-loading",
    "pallet-packing",
    "pallet-loading",
    "truck-loading",
    "box-packing",
    "logistics",
    "optimization",
    "warehouse",
    "shipping",
    "cargo"
  ],
  "author": "supra126 (https://github.com/supra126)",
  "license": "SEE LICENSE IN LICENSE",
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "devDependencies": {
    "@cratefit/core": "workspace:*",
    "@cratefit/pallet": "workspace:*",
    "@cratefit/container": "workspace:*",
    "@cratefit/truck": "workspace:*"
  }
}
