{
  "name": "@ansonzeng/sora-video-mcp-server",
  "version": "1.0.6",
  "description": "A professional MCP Server for generating videos with Sora AI. Supports text-to-video and image-to-video generation with customizable parameters including model selection, orientation, and duration.",
  "type": "module",
  "main": "./dist/index.js",
  "bin": {
    "sora-video-mcp-server": "./dist/bin/mcp-stdio-server.js",
    "sora-video-mcp": "./dist/bin/mcp-stdio-server.js",
    "sora-video-mcp-http": "./dist/bin/mcp-http-server.js"
  },
  "files": [
    "dist/**/*",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "start": "npm run build && node ./dist/bin/mcp-stdio-server.js",
    "start:http": "npm run build && node ./dist/bin/mcp-http-server.js",
    "clean": "rimraf dist",
    "test": "vitest",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "npm run clean && npm run build && npm run typecheck",
    "prepack": "npm run build"
  },
  "keywords": [
    "mcp",
    "model-context-protocol",
    "sora",
    "ai",
    "video-generation",
    "text-to-video",
    "image-to-video",
    "video-ai",
    "promptx",
    "typescript"
  ],
  "author": {
    "name": "Anson",
    "email": "anson@example.com"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/yourusername/sora-video-mcp-server.git"
  },
  "homepage": "https://github.com/yourusername/sora-video-mcp-server#readme",
  "bugs": {
    "url": "https://github.com/yourusername/sora-video-mcp-server/issues"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.11.4",
    "commander": "^12.1.0",
    "dotenv": "^16.4.5",
    "express": "^4.19.2"
  },
  "devDependencies": {
    "@types/express": "^4.17.21",
    "@types/node": "^20.14.2",
    "rimraf": "^5.0.7",
    "tsup": "^8.1.0",
    "typescript": "^5.4.5",
    "vitest": "^1.6.0"
  }
}
