{
  "name": "jszpl",
  "version": "2.0.1",
  "description": "ZPL II generation from TypeScript",
  "type": "module",
  "main": "./dist/jszpl.cjs",
  "module": "./dist/jszpl.mjs",
  "types": "./dist/jszpl.d.mts",
  "exports": {
    ".": {
      "import": "./dist/jszpl.mjs",
      "require": "./dist/jszpl.cjs",
      "types": "./dist/jszpl.d.mts"
    }
  },
  "files": [
    "dist",
    "images",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsdown",
    "test": "NODE_OPTIONS=--experimental-vm-modules jest",
    "font-packer": "node ./font-packer/font-packer.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/DanieLeeuwner/JSZPL.git"
  },
  "keywords": [
    "zpl",
    "zebra",
    "zebra programming language"
  ],
  "author": "Danie Leeuwner",
  "license": "GPL-3.0",
  "bugs": {
    "url": "https://github.com/DanieLeeuwner/JSZPL/issues"
  },
  "homepage": "https://github.com/DanieLeeuwner/JSZPL#readme",
  "jest": {
    "preset": "ts-jest/presets/default-esm",
    "injectGlobals": true,
    "testEnvironment": "node",
    "extensionsToTreatAsEsm": [
      ".ts"
    ],
    "transform": {
      "^.+\\.ts$": [
        "ts-jest",
        {
          "tsconfig": "tsconfig.test.json",
          "useESM": true
        }
      ]
    },
    "moduleNameMapper": {
      "^(\\.{1,2}/.*)\\.js$": "$1"
    },
    "testMatch": [
      "**/tests/**/*.test.ts"
    ]
  },
  "devDependencies": {
    "@types/jest": "^30.0.0",
    "@types/lodash": "^4.17.24",
    "@types/node": "^25.6.0",
    "@types/pngjs": "^6.0.5",
    "jest": "^30.3.0",
    "lodash": "^4.18.1",
    "pngjs": "^6.0.0",
    "ts-jest": "^29.4.9",
    "tsdown": "^0.21.10",
    "typescript": "^6.0.3"
  }
}