{
  "name": "antd-xlsx",
  "version": "1.4.2",
  "description": "Export an Excel file based on the columns and dataSource parameters of the antd Table component",
  "main": "dist/cjs",
  "module": "dist/esm",
  "types": "dist/index.d.ts",
  "scripts": {
    "build-modern": "microbundle src/style.ts src/nostyle.ts src/utils/saveAs.ts -o dist/esm/[name].js -f modern --tsconfig tsconfig.build.json ",
    "build-cjs": "microbundle src/style.ts src/nostyle.ts src/utils/saveAs.ts -o dist/cjs/[name].js -f cjs --tsconfig tsconfig.build.json ",
    "cp-entries": "cpy src/entries/entry-esm.js dist/esm --rename=index.js --flat && cpy src/entries/entry-cjs.js dist/cjs --rename=index.js --flat",
    "build:types": "tsc",
    "build:js": "npm run build-modern && npm run build-cjs && npm run cp-entries",
    "build": "rimraf dist && npm run build:types && npm run build:js",
    "watch": "microbundle src/style.ts src/nostyle.ts -o dist/esm -f modern -w",
    "dev": "cd example-vite2 && npm run dev",
    "gh-pages": "rimraf docs && cpy example-vite2/dist-pages/index.html docs --flat && cpy example-vite2/dist-pages/assets docs/assets --flat"
  },
  "keywords": [
    "antd",
    "xlsx",
    "xlsx-style",
    "excel"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/hellobq/antd-xlsx.git"
  },
  "author": "hellobq",
  "license": "MIT",
  "dependencies": {
    "xlsx": "0.18.5",
    "xlsx-style-vite": "0.0.2"
  },
  "devDependencies": {
    "cpy-cli": "4.1.0",
    "microbundle": "0.14.0",
    "rimraf": "4.4.1"
  },
  "files": [
    "dist"
  ],
  "publishConfig": {
    "registry": "https://registry.npmjs.org",
    "access": "public"
  },
  "sideEffects": false,
  "engines": {
    "node": ">=14"
  }
}
