pptx-glimpse 0.1.2 → 0.1.3
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 +71 -11
- package/dist/index.cjs +6725 -5316
- package/dist/index.d.cts +44 -1
- package/dist/index.d.ts +44 -1
- package/dist/index.js +6723 -5318
- package/package.json +9 -6
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pptx-glimpse",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "A
|
|
3
|
+
"version": "0.1.3",
|
|
4
|
+
"description": "A Node.js library to render PPTX as SVG / PNG.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
7
7
|
"module": "./dist/index.js",
|
|
@@ -34,8 +34,9 @@
|
|
|
34
34
|
"vrt:lo:fixtures": "docker run --rm -v \"$(pwd)\":/workspace pptx-glimpse-vrt python3 /workspace/vrt/libreoffice/create_fixtures.py",
|
|
35
35
|
"vrt:lo:update": "npm run vrt:lo:docker-build && npm run vrt:lo:fixtures && docker run --rm -v \"$(pwd)\":/workspace pptx-glimpse-vrt bash /workspace/vrt/libreoffice/update_snapshots.sh",
|
|
36
36
|
"test:package": "npm run build && bash scripts/test-package.sh",
|
|
37
|
+
"changeset": "changeset",
|
|
37
38
|
"demo:dev": "cd demo && npm run dev",
|
|
38
|
-
"demo:build": "cd demo && npm run build"
|
|
39
|
+
"demo:build": "npm run build && cd demo && npm install && npm run build"
|
|
39
40
|
},
|
|
40
41
|
"files": [
|
|
41
42
|
"dist"
|
|
@@ -62,16 +63,18 @@
|
|
|
62
63
|
"license": "MIT",
|
|
63
64
|
"dependencies": {
|
|
64
65
|
"fast-xml-parser": "^4.5.0",
|
|
65
|
-
"
|
|
66
|
-
"
|
|
66
|
+
"fflate": "^0.8.2",
|
|
67
|
+
"opentype.js": "^1.3.4",
|
|
68
|
+
"sharp": "^0.34.5"
|
|
67
69
|
},
|
|
68
70
|
"devDependencies": {
|
|
71
|
+
"@changesets/cli": "^2.29.8",
|
|
69
72
|
"@types/node": "^25.2.2",
|
|
70
73
|
"@types/ws": "^8.18.1",
|
|
71
74
|
"@vitest/coverage-v8": "^3.2.4",
|
|
72
75
|
"eslint": "^9.0.0",
|
|
73
76
|
"eslint-config-prettier": "^10.0.0",
|
|
74
|
-
"
|
|
77
|
+
"jszip": "^3.10.1",
|
|
75
78
|
"pixelmatch": "^7.1.0",
|
|
76
79
|
"prettier": "^3.0.0",
|
|
77
80
|
"tsup": "^8.0.0",
|