/
grigoriygrisha
/
excel-loader
Обзор
Документация
Войти
/
grigoriygrisha
/
excel-loader
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
package.json
69 строк
2 KB
grigoriy-grisha
first_commit
26 июл 2026, 21:46
26 июл 2026, 21:46
6cc93a5
Код
Авторство
О чём код?
{ "name": "excel-load", "version": "0.1.0", "description": "Drop-in streaming loader for large xlsx/CSV files (up to ~2 GB) directly in the browser. Handles workers, IndexedDB and parsing so you don't have to.", "type": "module", "license": "MIT", "keywords": [ "excel", "xlsx", "csv", "streaming", "web-worker", "indexeddb", "large-files", "ag-grid" ], "files": [ "dist" ], "main": "./dist/excel-load.cjs", "module": "./dist/excel-load.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/excel-load.js", "require": "./dist/excel-load.cjs" }, "./ag-grid": { "types": "./dist/adapters/agGridDatasource.d.ts", "import": "./dist/ag-grid.js", "require": "./dist/ag-grid.cjs" }, "./react": { "types": "./dist/react/useExcelLoader.d.ts", "import": "./dist/react.js", "require": "./dist/react.cjs" } }, "scripts": { "dev": "vite build --watch", "build": "vite build && tsc -p tsconfig.build.json --emitDeclarationOnly", "typecheck": "tsc --noEmit", "playground": "vite playground" }, "dependencies": { "dexie": "^4.0.10", "xlsx": "^0.18.5" }, "peerDependencies": { "ag-grid-community": "^32.0.0", "react": "^18.0.0 || ^19.0.0" }, "peerDependenciesMeta": { "ag-grid-community": { "optional": true }, "react": { "optional": true } }, "devDependencies": { "@types/react": "^18.3.12", "ag-grid-community": "^32.3.9", "typescript": "^5.5.3", "vite": "^5.4.10", "vite-plugin-dts": "^4.3.0" } }