@silurus/ooxml 0.1.0

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/dist/xlsx.cjs ADDED
@@ -0,0 +1 @@
1
+ Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});const e=require(`./xlsx-BhLRc4om.cjs`);exports.XlsxViewer=e.n,exports.XlsxWorkbook=e.r;
package/dist/xlsx.mjs ADDED
@@ -0,0 +1,2 @@
1
+ import { n as e, r as t } from "./xlsx-B-yZ85zA.js";
2
+ export { e as XlsxViewer, t as XlsxWorkbook };
package/package.json ADDED
@@ -0,0 +1,78 @@
1
+ {
2
+ "name": "@silurus/ooxml",
3
+ "version": "0.1.0",
4
+ "description": "Browser-based OOXML viewer (pptx/xlsx/docx) — Rust/WASM parser + Canvas renderer",
5
+ "license": "MIT",
6
+ "author": "Yuki Yokotani <yokotani.yuki@gmail.com>",
7
+ "keywords": [
8
+ "ooxml",
9
+ "pptx",
10
+ "xlsx",
11
+ "docx",
12
+ "powerpoint",
13
+ "excel",
14
+ "word",
15
+ "viewer",
16
+ "canvas",
17
+ "wasm",
18
+ "rust"
19
+ ],
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "git+https://github.com/yukiyokotani/office-open-xml-viewer.git"
23
+ },
24
+ "homepage": "https://github.com/yukiyokotani/office-open-xml-viewer#readme",
25
+ "bugs": {
26
+ "url": "https://github.com/yukiyokotani/office-open-xml-viewer/issues"
27
+ },
28
+ "publishConfig": {
29
+ "access": "public",
30
+ "provenance": true
31
+ },
32
+ "type": "module",
33
+ "files": [
34
+ "dist"
35
+ ],
36
+ "exports": {
37
+ ".": {
38
+ "import": "./dist/index.mjs",
39
+ "require": "./dist/index.cjs",
40
+ "types": "./dist/types/index.d.ts"
41
+ },
42
+ "./pptx": {
43
+ "import": "./dist/pptx.mjs",
44
+ "require": "./dist/pptx.cjs",
45
+ "types": "./dist/types/pptx.d.ts"
46
+ },
47
+ "./xlsx": {
48
+ "import": "./dist/xlsx.mjs",
49
+ "require": "./dist/xlsx.cjs",
50
+ "types": "./dist/types/xlsx.d.ts"
51
+ },
52
+ "./docx": {
53
+ "import": "./dist/docx.mjs",
54
+ "require": "./dist/docx.cjs",
55
+ "types": "./dist/types/docx.d.ts"
56
+ }
57
+ },
58
+ "devDependencies": {
59
+ "@chromatic-com/storybook": "^5.1.2",
60
+ "@storybook/addon-a11y": "^10.3.5",
61
+ "@storybook/addon-docs": "^10.3.5",
62
+ "@storybook/html-vite": "^10.3.5",
63
+ "storybook": "^10.3.5",
64
+ "vite": "^8.0.8",
65
+ "vite-plugin-dts": "^4.5.4",
66
+ "vite-plugin-top-level-await": "^1.6.0",
67
+ "vite-plugin-wasm": "^3.6.0"
68
+ },
69
+ "scripts": {
70
+ "build": "vite build",
71
+ "build:packages": "pnpm -r build",
72
+ "typecheck": "tsc --build",
73
+ "storybook": "storybook dev -p 6006",
74
+ "build-storybook": "storybook build",
75
+ "build:wasm": "pnpm --filter @silurus/ooxml-pptx wasm && pnpm --filter @silurus/ooxml-xlsx wasm && pnpm --filter @silurus/ooxml-docx wasm",
76
+ "vrt": "pnpm -r vrt"
77
+ }
78
+ }