excel-sheet-to-json
Version:
A TypeScript/JavaScript library that converts Excel files to JSON with custom header mapping. Works in both Node.js and browser environments.
69 lines (68 loc) • 1.3 kB
JSON
{
"version": "0.1.2",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "excel-sheet-to-json",
"author": "Mcdouhn",
"module": "dist/excel-sheet-to-json.esm.js",
"keywords": [
"excel",
"xlsx",
"parser",
"json",
"mapping",
"data-processing",
"universal",
"spreadsheet",
"excel-to-json"
],
"size-limit": [
{
"path": "dist/excel-sheet-to-json.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/excel-sheet-to-json.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^11.2.0",
"husky": "^9.1.7",
"size-limit": "^11.2.0",
"tsdx": "^0.14.1",
"tslib": "^2.8.1",
"typescript": "^3.9.10"
},
"dependencies": {
"xlsx": "^0.18.5"
}
}