{
  "name": "modern-openxml",
  "type": "module",
  "version": "1.12.4",
  "description": "OpenXML for JavaScript",
  "author": "wxm",
  "license": "MIT",
  "homepage": "https://github.com/qq15725/modern-openxml",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/qq15725/modern-openxml.git"
  },
  "bugs": {
    "url": "https://github.com/qq15725/modern-openxml/issues"
  },
  "keywords": [
    "OpenXML",
    "typescript",
    "OPC",
    "pptx",
    "xlsx",
    "docx"
  ],
  "sideEffects": false,
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    },
    "./presetShapeDefinitions": {
      "types": "./assets/presetShapeDefinitions.d.ts",
      "import": "./assets/presetShapeDefinitions.js",
      "default": "./assets/presetShapeDefinitions.js"
    },
    "./presetTextWarpDefinitions": {
      "types": "./assets/presetTextWarpDefinitions.d.ts",
      "import": "./assets/presetTextWarpDefinitions.js",
      "default": "./assets/presetTextWarpDefinitions.js"
    },
    "./*.mjs": "./*.js",
    "./*": "./*"
  },
  "main": "./dist/index.mjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "browser": "./dist/index.js",
  "typesVersions": {
    "*": {
      "*": [
        "*",
        "dist/*",
        "assets/*.d.ts"
      ]
    }
  },
  "files": [
    "assets",
    "dist"
  ],
  "dependencies": {
    "fflate": "^0.8.3",
    "modern-idoc": "^0.11.9",
    "modern-path2d": "^1.7.0"
  },
  "simple-git-hooks": {
    "pre-commit": "pnpm lint-staged"
  },
  "lint-staged": {
    "*": "eslint --fix"
  },
  "scripts": {
    "build": "vite build && unbuild",
    "dev": "vite docs",
    "lint": "eslint src",
    "start": "esno src/index.ts",
    "test": "vitest",
    "typecheck": "tsc --noEmit"
  }
}