@noy-db/as-xlsx 0.7.0-pre.7 → 0.7.0-pre.9
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 +2 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -4,9 +4,10 @@ Excel spreadsheet plaintext export for noy-db. Produces a real
|
|
|
4
4
|
`.xlsx` (Office Open XML) that opens natively in Excel, Numbers,
|
|
5
5
|
LibreOffice Calc, and Google Sheets.
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
No spreadsheet library — the XLSX encoder ships SpreadsheetML
|
|
8
8
|
parts and reuses `@noy-db/as-zip`'s zip writer. No SheetJS, no
|
|
9
9
|
ExcelJS, no xlsx-populate — ~230 LOC across the two-file encoder.
|
|
10
|
+
One runtime dependency: `fast-xml-parser`.
|
|
10
11
|
|
|
11
12
|
Part of the `@noy-db/as-*` portable-artefact family, plaintext
|
|
12
13
|
tier. See [`docs/packages-exports.md#authorization-model`](https://github.com/vLannaAi/noy-db/blob/main/docs/packages-exports.md#authorization-model).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@noy-db/as-xlsx",
|
|
3
|
-
"version": "0.7.0-pre.
|
|
3
|
+
"version": "0.7.0-pre.9",
|
|
4
4
|
"description": "Excel spreadsheet plaintext export for noy-db — produces a real .xlsx (Office Open XML) from one or more collections. Multi-sheet, Unicode-safe via shared-strings table. Zero runtime deps beyond the workspace zip encoder. Gated by `vault.assertCanExport('plaintext', …)` with format `'xlsx'`.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "vLannaAi <vicio@lanna.ai>",
|
|
@@ -32,18 +32,18 @@
|
|
|
32
32
|
"node": ">=22.0.0"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
35
|
-
"@noy-db/
|
|
36
|
-
"@noy-db/
|
|
35
|
+
"@noy-db/as-zip": "0.7.0-pre.9",
|
|
36
|
+
"@noy-db/hub": "^0.7.0-pre.9"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"fast-xml-parser": "^5.0.0"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@types/node": "^22.0.0",
|
|
43
|
-
"@noy-db/as-zip": "0.7.0-pre.
|
|
44
|
-
"@noy-db/
|
|
45
|
-
"@noy-db/
|
|
46
|
-
"@noy-db/test-format-conformance": "0.7.0-pre.
|
|
43
|
+
"@noy-db/as-zip": "0.7.0-pre.9",
|
|
44
|
+
"@noy-db/hub": "0.7.0-pre.9",
|
|
45
|
+
"@noy-db/to-memory": "0.7.0-pre.9",
|
|
46
|
+
"@noy-db/test-format-conformance": "0.7.0-pre.9"
|
|
47
47
|
},
|
|
48
48
|
"keywords": [
|
|
49
49
|
"noy-db",
|