@namahapdf/pptx 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/package.json ADDED
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "@namahapdf/pptx",
3
+ "version": "0.1.0",
4
+ "description": "Headless in-browser PowerPoint engine — parse, render, edit (.pptx write-back), export to PDF, and project to an AI-readable model. Part of the NamahaPDF SDK.",
5
+ "license": "SEE LICENSE IN LICENSE",
6
+ "type": "module",
7
+ "sideEffects": false,
8
+ "main": "./dist/index.cjs",
9
+ "module": "./dist/index.js",
10
+ "types": "./dist/index.d.ts",
11
+ "exports": {
12
+ ".": {
13
+ "types": "./dist/index.d.ts",
14
+ "import": "./dist/index.js",
15
+ "require": "./dist/index.cjs"
16
+ }
17
+ },
18
+ "files": [
19
+ "dist",
20
+ "README.md",
21
+ "LICENSE"
22
+ ],
23
+ "scripts": {
24
+ "build": "tsup"
25
+ },
26
+ "dependencies": {
27
+ "@noble/curves": "^1.9.7",
28
+ "@pdf-lib/fontkit": "^1.1.1",
29
+ "jszip": "^3.10.1",
30
+ "pdf-lib": "^1.17.1"
31
+ },
32
+ "publishConfig": {
33
+ "access": "public"
34
+ },
35
+ "engines": {
36
+ "node": ">=18"
37
+ },
38
+ "keywords": [
39
+ "pptx",
40
+ "powerpoint",
41
+ "powerpoint-editor",
42
+ "ooxml",
43
+ "slides",
44
+ "sdk"
45
+ ]
46
+ }