{
  "name": "app-builder-mcp-server",
  "version": "1.0.6",
  "main": "build/index.js",
  "type": "module",
  "bin": {
    "app-builder-mcp-server": "./build/index.js"
  },
  "scripts": {
    "build": "tsc && node --input-type=module -e \"import { chmodSync } from 'fs'; chmodSync('build/index.js', '755');\"",
    "start": "node build/index.js",
    "test": "jest",
    "lint": "eslint src/**/*.ts",
    "prepare": "npm run build"
  },
  "files": [
    "build"
  ],
  "keywords": [
    "mcp",
    "adobe",
    "app-builder",
    "cli",
    "aio",
    "modelcontextprotocol"
  ],
  "author": "Adobe Inc.",
  "license": "Apache-2.0",
  "description": "MCP server for Adobe App Builder CLI commands",
  "devDependencies": {
    "@types/jest": "^29.5.0",
    "@types/node": "^22.10.0",
    "@typescript-eslint/eslint-plugin": "^6.19.0",
    "@typescript-eslint/parser": "^6.19.0",
    "eslint": "^8.56.0",
    "jest": "^29.7.0",
    "ts-jest": "^29.1.1",
    "typescript": "^5.7.2"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.4.0",
    "zod": "^3.22.4"
  }
} 