xlsxtable
Version:
Create nice Excel files from tabular data
43 lines (42 loc) • 1.13 kB
JSON
{
"name": "xlsxtable",
"version": "0.3.1",
"description": "Create nice Excel files from tabular data",
"files": [
"index.js",
"index.mjs",
"index.d.ts",
"index.d.mts",
"README.md"
],
"exports": {
"require": "./index.js",
"import": "./index.mjs"
},
"scripts": {
"check": "tsc --noEmit",
"buildCjs": "esbuild index.ts --bundle --external:littlezip --format=cjs --minify --line-limit=100 --loader:.xml=text --outfile=index.js",
"buildEsm": "esbuild index.ts --bundle --external:littlezip --format=esm --minify --line-limit=100 --loader:.xml=text --outfile=index.mjs",
"build": "npm run check && npm run buildCjs && npm run buildEsm && cp index.d.ts index.d.mts",
"example": "npm run build && node example.mjs"
},
"keywords": [
"xlsx",
"xls",
"Excel",
"tables"
],
"author": "George MacKerron",
"license": "MIT",
"devDependencies": {
"esbuild": "^0.21.3",
"typescript": "^5.4.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jawj/xlsxtable.git"
},
"dependencies": {
"littlezipper": "^0.1.4"
}
}