@dukelib/sheets 0.1.4
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/README.md +20 -0
- package/index.d.ts +850 -0
- package/index.js +584 -0
- package/package.json +61 -0
package/README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# @dukelib/sheets
|
|
2
|
+
|
|
3
|
+
High-performance Excel file library for Node.js, powered by Rust.
|
|
4
|
+
|
|
5
|
+
See the [main project README](../../README.md) for full documentation,
|
|
6
|
+
including API reference, async usage, and read-only accessor examples.
|
|
7
|
+
|
|
8
|
+
## Development
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
cd bindings/nodejs
|
|
12
|
+
npm install
|
|
13
|
+
npm run build # Build native addon (release)
|
|
14
|
+
npm run build:debug # Build native addon (debug)
|
|
15
|
+
npm test # Run tests
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## License
|
|
19
|
+
|
|
20
|
+
MIT OR Apache-2.0
|