{
  "name": "@json-to-office/core-docx",
  "version": "7.0.1",
  "description": "Core DOCX document generation engine",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    },
    "./*": {
      "types": "./dist/*.d.ts",
      "import": "./dist/*.js",
      "default": "./dist/*.js"
    }
  },
  "dependencies": {
    "@office-open/docx": "0.11.0",
    "@resvg/resvg-js": "2.6.2",
    "@sinclair/typebox": "0.34.38",
    "adm-zip": "0.5.16",
    "date-fns": "3.6.0",
    "probe-image-size": "7.2.3",
    "@json-to-office/quality": "^7.0.0",
    "@json-to-office/shared": "^7.0.1",
    "@json-to-office/shared-docx": "^7.0.0"
  },
  "peerDependencies": {
    "docx": "9.7.1"
  },
  "devDependencies": {
    "@office-open/core": "0.11.0",
    "@types/adm-zip": "0.5.7",
    "@types/node": "22.20.2",
    "@types/probe-image-size": "7.2.4",
    "jszip": "3.10.1",
    "tsup": "8.5.0",
    "typescript": "5.3.3"
  },
  "license": "MIT",
  "author": "Paolo Barbato",
  "repository": {
    "type": "git",
    "url": "https://github.com/Wiseair-srl/json-to-office.git",
    "directory": "packages/core-docx"
  },
  "homepage": "https://github.com/Wiseair-srl/json-to-office/tree/main/packages/core-docx",
  "bugs": {
    "url": "https://github.com/Wiseair-srl/json-to-office/issues"
  },
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist",
    "LICENSE"
  ],
  "keywords": [
    "json-to-office",
    "typescript",
    "docx",
    "document",
    "word"
  ],
  "engines": {
    "node": ">=22.0.0"
  },
  "scripts": {
    "build": "tsup && tsc --emitDeclarationOnly --declaration",
    "build:js": "tsup",
    "build:types": "tsc --emitDeclarationOnly --declaration",
    "dev": "tsup --watch",
    "clean": "rm -rf dist",
    "lint": "eslint src --ext .ts",
    "lint:fix": "eslint src --ext .ts --fix",
    "format": "prettier --write \"src/**/*.ts\"",
    "typecheck": "tsc --noEmit",
    "test": "vitest run --passWithNoTests",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage --passWithNoTests"
  }
}