{
  "name": "xlsx-manager",
  "version": "1.0.4",
  "description": "A powerful TypeScript library for Excel file manipulation with advanced table detection, formatting, and data extraction",
  "main": "dist/index.cjs",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "type": "module",
  "exports": {
    ".": {
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs",
      "types": "./dist/index.d.ts"
    }
  },
  "browser": {
    "fs": false,
    "path": false,
    "fs/promises": false
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "keywords": [
    "xlsx",
    "excel",
    "spreadsheet",
    "exceljs",
    "table-detection",
    "data-extraction",
    "xlsx-parser",
    "xlsx-manager",
    "conditional-formatting"
  ],
  "author": "",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": ""
  },
  "devDependencies": {
    "@types/bun": "^1.3.3",
    "@hono/node-server": "^1.19.6",
    "hono": "^4.10.6",
    "typescript": "^5.9.3"
  },
  "dependencies": {
    "exceljs": "^4.4.0",
    "fast-xml-parser": "^5.3.2",
    "jszip": "^3.10.1"
  },
  "scripts": {
    "build": "npm run build:cjs && npm run build:esm",
    "build:cjs": "tsc && node scripts/rename-cjs.cjs",
    "build:esm": "tsc --project tsconfig.esm.json && node scripts/rename-esm.cjs",
    "dev": "bun run --watch examples/basic.ts",
    "start": "bun run index.ts",
    "prepublishOnly": "npm run build"
  }
}
