{
  "name": "pptx-auto-gen",
  "version": "1.0.0",
  "description": "Professional PowerPoint presentation generator with template support",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "pptx-auto-gen": "./dist/cli.js"
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "clean": "rm -rf dist",
    "prebuild": "npm run clean",
    "prepublishOnly": "npm run build",
    "test": "jest",
    "lint": "eslint . --ext .ts",
    "format": "prettier --write \"src/**/*.ts\"",
    "example": "npm run build && node dist/cli.js --input examples/slides.json --output examples/output.pptx"
  },
  "keywords": [
    "powerpoint",
    "pptx",
    "presentation",
    "generator",
    "slides",
    "template",
    "automation",
    "office"
  ],
  "author": "",
  "license": "MIT",
  "dependencies": {
    "pptxgenjs": "^3.12.0",
    "pptx-automizer": "^0.4.0",
    "yargs": "^17.7.2",
    "ajv": "^8.12.0",
    "chalk": "^4.1.2",
    "ora": "^5.4.1",
    "axios": "^1.6.2"
  },
  "devDependencies": {
    "@types/node": "^20.10.5",
    "@types/yargs": "^17.0.32",
    "@typescript-eslint/eslint-plugin": "^6.15.0",
    "@typescript-eslint/parser": "^6.15.0",
    "eslint": "^8.56.0",
    "eslint-config-prettier": "^9.1.0",
    "jest": "^29.7.0",
    "prettier": "^3.1.1",
    "ts-jest": "^29.1.1",
    "ts-node": "^10.9.2",
    "typescript": "^5.3.3"
  },
  "engines": {
    "node": ">=16.0.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/wapdat/powerpoint-creator.git"
  },
  "bugs": {
    "url": "https://github.com/wapdat/powerpoint-creator/issues"
  },
  "homepage": "https://github.com/wapdat/powerpoint-creator#readme",
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ]
}