@apollo-design/docx-preview 0.6.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,61 @@
1
+ {
2
+ "name": "@apollo-design/docx-preview",
3
+ "version": "0.6.2",
4
+ "description": "Render DOCX documents as semantic HTML, with a standalone iframe-embeddable viewer",
5
+ "keywords": [
6
+ "word",
7
+ "docx",
8
+ "preview",
9
+ "viewer",
10
+ "html"
11
+ ],
12
+ "license": "Apache-2.0",
13
+ "author": "apollocmh",
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/apollocmh/docx-preview.git"
17
+ },
18
+ "homepage": "https://apollocmh.github.io/docx-preview/",
19
+ "bugs": "https://github.com/apollocmh/docx-preview/issues",
20
+ "type": "module",
21
+ "main": "./dist/docx-preview.cjs",
22
+ "module": "./dist/docx-preview.mjs",
23
+ "types": "./dist/docx-preview.d.ts",
24
+ "exports": {
25
+ ".": {
26
+ "types": "./dist/docx-preview.d.ts",
27
+ "import": "./dist/docx-preview.mjs",
28
+ "require": "./dist/docx-preview.cjs"
29
+ },
30
+ "./package.json": "./package.json"
31
+ },
32
+ "files": [
33
+ "dist",
34
+ "NOTICE"
35
+ ],
36
+ "sideEffects": false,
37
+ "engines": {
38
+ "node": "^20.19.0 || >=22.12.0"
39
+ },
40
+ "packageManager": "pnpm@11.0.9",
41
+ "publishConfig": {
42
+ "access": "public"
43
+ },
44
+ "dependencies": {
45
+ "jszip": ">=3.0.0"
46
+ },
47
+ "devDependencies": {
48
+ "@microsoft/api-extractor": "^7.59.0",
49
+ "terser": "^5.51.2",
50
+ "typescript": "^5.0.3",
51
+ "vite": "^8.2.2",
52
+ "vite-plugin-dts": "^5.1.0"
53
+ },
54
+ "scripts": {
55
+ "dev": "vite",
56
+ "build": "node scripts/build-lib.mjs",
57
+ "build:viewer": "vite build",
58
+ "test": "node scripts/build-lib.mjs && node scripts/check-dist.mjs",
59
+ "watch": "node scripts/build-lib.mjs --watch"
60
+ }
61
+ }