@alaarab/ogrid-react-xlsx-browser 2.14.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,58 @@
1
+ {
2
+ "name": "@alaarab/ogrid-react-xlsx-browser",
3
+ "version": "2.14.2",
4
+ "description": "Self-contained browser ESM bundle of @alaarab/ogrid-react-xlsx. React + ReactDOM + ExcelJS + every @alaarab/ogrid-* dep inlined into one file. Drop into a static vendor/ directory and `import()` from a no-bundler app.",
5
+ "main": "dist/ogrid-xlsx.js",
6
+ "module": "dist/ogrid-xlsx.js",
7
+ "exports": {
8
+ ".": {
9
+ "import": "./dist/ogrid-xlsx.js",
10
+ "default": "./dist/ogrid-xlsx.js"
11
+ },
12
+ "./ogrid-xlsx.css": "./dist/ogrid-xlsx.css"
13
+ },
14
+ "scripts": {
15
+ "build": "rimraf dist && tsup",
16
+ "test": "echo 'no tests — this package only re-bundles @alaarab/ogrid-react-xlsx; tests live there'"
17
+ },
18
+ "keywords": [
19
+ "ogrid",
20
+ "xlsx",
21
+ "excel",
22
+ "spreadsheet",
23
+ "browser",
24
+ "no-bundler",
25
+ "esm",
26
+ "vendor"
27
+ ],
28
+ "author": "Ala Arab",
29
+ "license": "MIT",
30
+ "files": [
31
+ "dist",
32
+ "README.md",
33
+ "LICENSE"
34
+ ],
35
+ "sideEffects": false,
36
+ "engines": {
37
+ "node": ">=18"
38
+ },
39
+ "devDependencies": {
40
+ "@alaarab/ogrid-react-xlsx": "2.14.2",
41
+ "@types/react": "^19.2.14",
42
+ "@types/react-dom": "^19.2.3",
43
+ "react": "^19.2.5",
44
+ "react-dom": "^19.2.5",
45
+ "rimraf": "^6.0.0",
46
+ "tsup": "^8.0.0"
47
+ },
48
+ "publishConfig": {
49
+ "access": "public"
50
+ },
51
+ "repository": {
52
+ "type": "git",
53
+ "url": "https://github.com/alaarab/ogrid.git",
54
+ "directory": "packages/react-xlsx-browser"
55
+ },
56
+ "homepage": "https://ogrid.dev",
57
+ "bugs": "https://github.com/alaarab/ogrid/issues"
58
+ }