{
  "name": "zrald1-powerpoint-mcp-server",
  "version": "1.0.0",
  "description": "A comprehensive MCP server for PowerPoint file operations and manipulation with full toolbar-like editing capabilities and AI agent support",
  "main": "dist/index-simple.js",
  "types": "dist/index.d.ts",
  "type": "module",
  "bin": {
    "powerpoint-mcp-server": "dist/index-comprehensive.js"
  },
  "files": [
    "dist/**/*",
    "README.md",
    "LICENSE",
    "package.json"
  ],
  "scripts": {
    "build": "tsc",
    "start": "node dist/index.js",
    "dev": "tsc && node dist/index.js",
    "watch": "tsc --watch",
    "clean": "rimraf dist",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "test:mutation": "stryker run",
    "test:all": "npm run test:unit && npm run test:integration && npm run test:performance && npm run test:ai-agent && npm run test:comprehensive && npm run test:enterprise",
    "test:enterprise": "jest --testPathPattern=enterprise",
    "test:comprehensive": "jest --testPathPattern=comprehensive-simple",
    "test:coverage:check": "jest --coverage --coverageThreshold='{\"global\":{\"branches\":90,\"functions\":90,\"lines\":90,\"statements\":90}}'",
    "test:security": "jest --testPathPattern=security",
    "test:ci": "jest --ci --coverage --maxWorkers=2",
    "test:unit": "jest --testPathPattern=unit",
    "test:integration": "jest --testPathPattern=integration",
    "test:e2e": "jest --testPathPattern=e2e --maxWorkers=1",
    "test:performance": "jest --testPathPattern=performance --maxWorkers=1",
    "test:stress": "jest --testPathPattern=stress --maxWorkers=1 --forceExit",
    "test:load": "jest --testPathPattern=load --maxWorkers=1 --forceExit",
    "test:visual": "jest --testPathPattern=visual --maxWorkers=1",
    "test:platform": "jest --testPathPattern=platform",
    "test:ai-agent": "jest --testPathPattern=ai-agent",
    "lint": "eslint src tests --ext .ts",
    "lint:fix": "eslint src tests --ext .ts --fix",
    "format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
    "format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
    "type-check": "tsc --noEmit",
    "validate:mcp": "node scripts/validate-mcp-protocol.js",
    "security:scan": "npm audit && snyk test",
    "security:fix": "npm audit fix && snyk wizard",
    "validate:package": "npm run build && npm pack --dry-run",
    "validate:release": "npm run test:coverage:check && npm run lint && npm run security:scan",
    "report:performance": "node scripts/generate-performance-report.js",
    "report:security": "node scripts/generate-security-report.js",
    "prepack": "npm run build",
    "docs:generate": "typedoc src/index.ts --out docs --theme default",
    "prepublishOnly": "npm run clean && npm run build && npm run test:all && npm run test:coverage:check",
    "publish:dry": "npm publish --dry-run",
    "publish:beta": "npm publish --tag beta",
    "publish:latest": "npm publish",
    "version:patch": "npm version patch",
    "version:minor": "npm version minor",
    "version:major": "npm version major"
  },
  "keywords": [
    "mcp",
    "model-context-protocol",
    "powerpoint",
    "presentation",
    "pptx",
    "automation",
    "office",
    "slides",
    "charts",
    "shapes",
    "text-formatting",
    "ai-agent",
    "claude",
    "chatgpt",
    "animations",
    "master-slides",
    "themes"
  ],
  "author": {
    "name": "Zrald1",
    "email": "148607101+Zrald1@users.noreply.github.com"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Zrald1/powerpoint-mcp-server.git"
  },
  "bugs": {
    "url": "https://github.com/Zrald1/powerpoint-mcp-server/issues"
  },
  "homepage": "https://github.com/Zrald1/powerpoint-mcp-server#readme",
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.13.2",
    "fs-extra": "^11.2.0",
    "mime-types": "^2.1.35",
    "path": "^0.12.7",
    "pptxgenjs": "^3.12.0",
    "sharp": "^0.33.0",
    "uuid": "^9.0.1",
    "zod": "^3.22.4"
  },
  "devDependencies": {
    "@babel/plugin-transform-modules-commonjs": "^7.27.1",
    "@babel/preset-env": "^7.27.2",
    "@babel/preset-typescript": "^7.27.1",
    "@stryker-mutator/core": "^8.0.0",
    "@stryker-mutator/jest-runner": "^8.0.0",
    "@stryker-mutator/typescript-checker": "^8.0.0",
    "@types/fs-extra": "^11.0.4",
    "@types/jest": "^29.5.8",
    "@types/mime-types": "^2.1.4",
    "@types/node": "^20.10.0",
    "@types/uuid": "^9.0.8",
    "@typescript-eslint/eslint-plugin": "^6.0.0",
    "@typescript-eslint/parser": "^6.0.0",
    "eslint": "^8.45.0",
    "eslint-plugin-import": "^2.28.0",
    "eslint-plugin-jest": "^27.2.0",
    "jest": "^29.7.0",
    "prettier": "^3.0.0",
    "rimraf": "^5.0.5",
    "ts-jest": "^29.1.1",
    "typedoc": "^0.28.6",
    "typescript": "^5.3.0"
  },
  "engines": {
    "node": ">=18.0.0"
  }
}
