UNPKG

@imgly/pptx-importer

Version:

Import PowerPoint (PPTX) presentations into IMG.LY's Creative Engine SDK. Platform-agnostic TypeScript library for converting PPTX slides to CE.SDK scenes.

81 lines (80 loc) 2.16 kB
{ "name": "@imgly/pptx-importer", "version": "2.0.0-rc.1", "description": "Import PowerPoint (PPTX) presentations into IMG.LY's Creative Engine SDK. Platform-agnostic TypeScript library for converting PPTX slides to CE.SDK scenes.", "license": "ISC", "author": "IMG.LY", "homepage": "https://img.ly", "repository": { "type": "git", "url": "https://github.com/imgly/pptx-importer.git" }, "bugs": { "url": "https://github.com/imgly/pptx-importer/issues" }, "keywords": [ "pptx", "powerpoint", "importer", "cesdk", "creative-engine", "imgly", "presentation", "typescript", "browser", "nodejs" ], "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" } }, "files": [ "dist", "README.md", "LICENSE" ], "publishConfig": { "access": "public" }, "scripts": { "build": "npm run clean && node build.mjs", "clean": "rm -rf dist", "prepublishOnly": "npm run build", "test": "vitest run", "test:generated": "vitest run test/generated", "test:golden": "vitest run test/golden/golden-screenshots.test.ts", "test:scene-archives": "vitest run test/golden/scene-archive.test.ts", "test:golden:all": "vitest run test/golden", "test:golden:export-scenes": "EXPORT_SCENES=true vitest run test/golden", "test:watch": "vitest", "test:update-golden": "UPDATE_GOLDEN=true vitest run test/golden", "typecheck": "tsc --noEmit", "changeset": "changeset", "version": "changeset version", "release": "changeset publish" }, "dependencies": { "fast-xml-parser": "^5.3.0", "jszip": "^3.10.1" }, "devDependencies": { "@cesdk/node": "^1.60.0", "@changesets/cli": "^2.29.7", "@types/jszip": "^3.4.0", "@types/node": "^20.0.0", "@types/pixelmatch": "^5.2.6", "@types/pngjs": "^6.0.0", "dotenv": "^17.2.3", "jsdom": "^27.0.0", "pixelmatch": "^6.0.0", "pngjs": "^7.0.0", "pptxgenjs": "^3.12.0", "typescript": "^5.0.0", "vitest": "^1.0.0" } }