@christophervr/pptx-viewer 1.1.44 → 1.1.45

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 CHANGED
@@ -1,22 +1,19 @@
1
1
  {
2
2
  "name": "@christophervr/pptx-viewer",
3
- "version": "1.1.44",
4
- "description": "PowerPoint PPTX engine: parse, edit, serialize, and convert .pptx files. Framework-agnostic TypeScript SDK.",
3
+ "version": "1.1.45",
4
+ "description": "Interactive installer for the pptx-viewer family of packages: React, Vue, and Angular viewer components, the framework-agnostic core engine, and the MCP server.",
5
5
  "keywords": [
6
- "converter",
7
- "markdown",
6
+ "cli",
7
+ "create",
8
+ "installer",
8
9
  "office",
9
- "ooxml",
10
10
  "openxml",
11
- "parser",
12
11
  "powerpoint",
13
12
  "ppt",
14
13
  "pptx",
15
14
  "presentation",
16
- "sdk",
17
- "serializer",
18
- "slides",
19
- "typescript"
15
+ "scaffold",
16
+ "slides"
20
17
  ],
21
18
  "homepage": "https://github.com/ChristopherVR/pptx-viewer",
22
19
  "bugs": {
@@ -27,10 +24,10 @@
27
24
  "repository": {
28
25
  "type": "git",
29
26
  "url": "https://github.com/ChristopherVR/pptx-viewer.git",
30
- "directory": "packages/core"
27
+ "directory": "packages/cli"
31
28
  },
32
29
  "bin": {
33
- "pptx": "./dist/cli/index.mjs"
30
+ "pptx-viewer": "./dist/index.mjs"
34
31
  },
35
32
  "files": [
36
33
  "dist/",
@@ -40,67 +37,25 @@
40
37
  "README.md"
41
38
  ],
42
39
  "main": "dist/index.mjs",
43
- "module": "dist/index.mjs",
44
- "types": "dist/index.d.ts",
45
- "exports": {
46
- ".": {
47
- "types": "./dist/index.d.ts",
48
- "import": "./dist/index.mjs",
49
- "require": "./dist/index.js"
50
- },
51
- "./converter": {
52
- "types": "./dist/converter/index.d.ts",
53
- "import": "./dist/converter/index.mjs",
54
- "require": "./dist/converter/index.js"
55
- },
56
- "./cli": {
57
- "types": "./dist/cli/index.d.ts",
58
- "import": "./dist/cli/index.mjs",
59
- "require": "./dist/cli/index.js"
60
- },
61
- "./signature-node": {
62
- "types": "./dist/signature-node/index.d.ts",
63
- "import": "./dist/signature-node/index.mjs",
64
- "require": "./dist/signature-node/index.js"
65
- }
40
+ "types": "dist/index.d.mts",
41
+ "publishConfig": {
42
+ "access": "public"
66
43
  },
67
44
  "scripts": {
68
- "build": "tsup",
45
+ "build": "tsup && node -e \"require('fs').chmodSync('dist/index.mjs', 0o755)\"",
69
46
  "dev": "tsup --watch",
70
47
  "typecheck": "tsc --noEmit --pretty",
71
48
  "test": "vitest run",
72
49
  "test:watch": "vitest",
73
50
  "pack": "bun run build && bun pm pack"
74
51
  },
75
- "dependencies": {
76
- "emf-converter": "^1.5.0",
77
- "fast-xml-parser": "^5.9.3",
78
- "jszip": "^3.10.1",
79
- "mtx-decompressor": "^1.4.2"
80
- },
81
52
  "devDependencies": {
82
- "@types/node-forge": "^1.3.14",
83
- "@xmldom/xmldom": "^0.8.13",
84
- "node-forge": "^1.4.0",
53
+ "@types/node": "^26.0.0",
85
54
  "tsup": "^8.5.1",
86
55
  "typescript": "^6.0.3",
87
- "vitest": "^4.1.9",
88
- "xml-crypto": "^6.1.2"
89
- },
90
- "peerDependencies": {
91
- "@xmldom/xmldom": "^0.8.0",
92
- "node-forge": "^1.3.0",
93
- "xml-crypto": "^6.0.0"
56
+ "vitest": "^4.1.9"
94
57
  },
95
- "peerDependenciesMeta": {
96
- "node-forge": {
97
- "optional": true
98
- },
99
- "xml-crypto": {
100
- "optional": true
101
- },
102
- "@xmldom/xmldom": {
103
- "optional": true
104
- }
58
+ "engines": {
59
+ "node": ">=18"
105
60
  }
106
61
  }
package/CHANGELOG.md DELETED
@@ -1,79 +0,0 @@
1
- # Changelog
2
-
3
- All notable changes to this project are documented here.
4
- This file is generated from [Conventional Commits](https://www.conventionalcommits.org)
5
- by [git-cliff](https://git-cliff.org); do not edit it by hand.
6
-
7
- ## [1.1.43](https://github.com/ChristopherVR/pptx-viewer/releases/tag/pptx-viewer-core@1.1.43) - 2026-07-02
8
-
9
- ### Bug Fixes
10
-
11
- - **core,angular:** Revert xmldom to 0.8.x and fix shared import specifiers (by @ChristopherVR) ([29eda31](https://github.com/ChristopherVR/pptx-viewer/commit/29eda3119836559b63bc08733dd9dd6398a69c8d))
12
-
13
- ## [1.1.42](https://github.com/ChristopherVR/pptx-viewer/releases/tag/pptx-viewer-core@1.1.42) - 2026-06-27
14
-
15
- ### Bug Fixes
16
-
17
- - Missing document links (by @ChristopherVR) ([f52bd6f](https://github.com/ChristopherVR/pptx-viewer/commit/f52bd6fd2fc4f564f018ecf5e84e64d24c8fd240))
18
-
19
- ## [1.1.28](https://github.com/ChristopherVR/pptx-viewer/releases/tag/pptx-viewer-core@1.1.28) - 2026-06-21
20
-
21
- ### Dependencies
22
-
23
- - **deps:** Update dependencies within semver ranges (by @ChristopherVR) ([d472b58](https://github.com/ChristopherVR/pptx-viewer/commit/d472b58dfd47628b5c682bd5f4dc2014ec29b421))
24
-
25
- ## [1.1.27](https://github.com/ChristopherVR/pptx-viewer/releases/tag/pptx-viewer-core@1.1.27) - 2026-06-21
26
-
27
- ### Bug Fixes
28
-
29
- - **angular:** Bundle pptx-viewer-core and fix demo JIT + Vue demo alias (by @ChristopherVR) ([78838ec](https://github.com/ChristopherVR/pptx-viewer/commit/78838ec900fe2d8c90bc39333636d788c52c3161))
30
-
31
- ## [1.1.26](https://github.com/ChristopherVR/pptx-viewer/releases/tag/pptx-viewer-core@1.1.26) - 2026-06-21
32
-
33
- ### Documentation
34
-
35
- - Sharpen npm descriptions and keywords for discoverability (by @ChristopherVR) ([8fea56d](https://github.com/ChristopherVR/pptx-viewer/commit/8fea56d7650f7dc2f3167dea97b94b612a03a4e7))
36
- - **core:** Reword README in plain language (by @ChristopherVR) ([793c26e](https://github.com/ChristopherVR/pptx-viewer/commit/793c26ec7e2415c66f34c637cb541483bf395a11))
37
-
38
- ## [1.1.24](https://github.com/ChristopherVR/pptx-viewer/releases/tag/pptx-viewer-core@1.1.24) - 2026-06-20
39
-
40
- ### Features
41
-
42
- - **core:** Add signature-node module and shared signature utilities (by @ChristopherVR) ([e7cb263](https://github.com/ChristopherVR/pptx-viewer/commit/e7cb26335f15e633cfc37371f16a6ad210be5e11))
43
-
44
- ### Bug Fixes
45
-
46
- - Enable vitest globals in all packages to fix expectTypeOf errors (by @ChristopherVR) ([6d90d72](https://github.com/ChristopherVR/pptx-viewer/commit/6d90d72ff0107ad0194f9c73ceeb3df244f4cfc6))
47
- - **test:** Add i18n mocks to react tests and bump versions to 1.2.0 (by @ChristopherVR) ([2c1c962](https://github.com/ChristopherVR/pptx-viewer/commit/2c1c9628714b905b28592493abf02fb270107b65))
48
- - **deps:** Pin @xmldom/xmldom to 0.8.x in core to fix build (by @ChristopherVR) ([2ed7b2e](https://github.com/ChristopherVR/pptx-viewer/commit/2ed7b2e777d4e740a3e4c9ca7e2b3d6fc2bbd21f))
49
- - **core:** Declare jszip and fast-xml-parser as runtime dependencies (by @ChristopherVR) ([b6636be](https://github.com/ChristopherVR/pptx-viewer/commit/b6636be972206bb2c6acee0fed05c45b4759fbdc))
50
-
51
- ### Refactor
52
-
53
- - **core:** Consume emf-converter and mtx-decompressor from npm (by @ChristopherVR) ([2f6013d](https://github.com/ChristopherVR/pptx-viewer/commit/2f6013d5b8fab0aef5b32901841d94c0fa886f24))
54
-
55
- ### Documentation
56
-
57
- - Restructure root README, elevate limitations, fix outdated claims (by @ChristopherVR) ([86dcda9](https://github.com/ChristopherVR/pptx-viewer/commit/86dcda9b5e3129f2223341337055778db574e985))
58
- - Rewrite limitations with technical explanations and remove inaccurate claims (by @ChristopherVR) ([ac4bc84](https://github.com/ChristopherVR/pptx-viewer/commit/ac4bc84ed9bd03f62e3ae29c35baf3f444a3c0bf))
59
- - **readme:** Npm-friendly READMEs — hero image, capabilities & install first (by @ChristopherVR) ([c843d19](https://github.com/ChristopherVR/pptx-viewer/commit/c843d1934b846f901bba92e63d2b01f9479594d0))
60
- - Streamline npm READMEs and add badges, screenshots, demo links (by @ChristopherVR) ([92e980d](https://github.com/ChristopherVR/pptx-viewer/commit/92e980d434900abd223c4d70c6cae19a623f9ca8))
61
-
62
- ### Build & CI
63
-
64
- - Independent per-package versioning, tags, and changelogs (by @ChristopherVR) ([79595d9](https://github.com/ChristopherVR/pptx-viewer/commit/79595d972d7c4102e8b1e1e3926f439486f76ba1))
65
-
66
- ### Dependencies
67
-
68
- - **deps:** Update all dependencies to latest (by @ChristopherVR) ([e3287c0](https://github.com/ChristopherVR/pptx-viewer/commit/e3287c03ff58b1a1ae103ed32a513468a454a084))
69
- - **deps:** Bump all workspace manifest floors to latest (by @ChristopherVR) ([890c33d](https://github.com/ChristopherVR/pptx-viewer/commit/890c33d667a39480a69e6a3da893964382993b29))
70
-
71
- ### Chores
72
-
73
- - Add license files, NOTICE, and package metadata for npm publishing (by @ChristopherVR) ([9464bb8](https://github.com/ChristopherVR/pptx-viewer/commit/9464bb8b91734daf35131d3c7e52e60895fe0a1c))
74
- - Bump all packages to v1.1.0 and remove remaining MyClawAssist refs (by @ChristopherVR) ([c386511](https://github.com/ChristopherVR/pptx-viewer/commit/c38651150c08011cee5e17e15f7ee8adc0014b80))
75
- - Bump all packages to 1.x.1 patch versions (by @ChristopherVR) ([c75205a](https://github.com/ChristopherVR/pptx-viewer/commit/c75205a96cc7797d1647ac4705395b7707ac8910))
76
- - Bump all packages to minor versions for SDK table support (by @ChristopherVR) ([2d4b635](https://github.com/ChristopherVR/pptx-viewer/commit/2d4b6351b0bf328f8a556cf593733fd8ad36c7b5))
77
- - Bump dependencies to latest and minor-bump packages for parity work (by @ChristopherVR) ([da19fdf](https://github.com/ChristopherVR/pptx-viewer/commit/da19fdf9a4670d274d9973b67aa22d34217b8555))
78
- - Roll TypeScript back to 5.9.x; quiet new oxlint vitest rules (by @ChristopherVR) ([713c020](https://github.com/ChristopherVR/pptx-viewer/commit/713c020ac2428db0fb1eb6cb30e56b2cff19a80f))
79
- - Relicense from MIT to Apache-2.0 (by @ChristopherVR) ([e12f926](https://github.com/ChristopherVR/pptx-viewer/commit/e12f9266f02bebbfc218986b617c418fee43a56b))