Spaces:
Paused
Paused
| { | |
| "name": "@modelcontextprotocol/server-video-resource", | |
| "version": "1.7.2", | |
| "type": "module", | |
| "description": "MCP App Server demonstrating video resources served as base64 blobs", | |
| "repository": { | |
| "type": "git", | |
| "url": "https://github.com/modelcontextprotocol/ext-apps", | |
| "directory": "examples/video-resource-server" | |
| }, | |
| "license": "MIT", | |
| "main": "dist/server.js", | |
| "files": [ | |
| "dist" | |
| ], | |
| "scripts": { | |
| "build": "tsc --noEmit && cross-env INPUT=mcp-app.html vite build && tsc -p tsconfig.server.json && bun build server.ts --outdir dist --target node && bun build main.ts --outfile dist/index.js --target node --external \"./server.js\" --banner \"#!/usr/bin/env node\"", | |
| "watch": "cross-env INPUT=mcp-app.html vite build --watch", | |
| "serve": "bun --watch main.ts", | |
| "serve:stdio": "bun main.ts --stdio", | |
| "start": "cross-env NODE_ENV=development npm run build && npm run serve", | |
| "start:stdio": "cross-env NODE_ENV=development npm run build 1>&2 && npm run serve:stdio", | |
| "dev": "cross-env NODE_ENV=development concurrently \"npm run watch\" \"npm run serve\"", | |
| "prepublishOnly": "npm run build" | |
| }, | |
| "dependencies": { | |
| "@modelcontextprotocol/ext-apps": "^1.0.0", | |
| "@modelcontextprotocol/sdk": "^1.29.0", | |
| "cors": "^2.8.5", | |
| "express": "^5.1.0", | |
| "zod": "^4.1.13" | |
| }, | |
| "devDependencies": { | |
| "@types/cors": "^2.8.19", | |
| "@types/express": "^5.0.0", | |
| "@types/node": "22.10.0", | |
| "concurrently": "^9.2.1", | |
| "cross-env": "^10.1.0", | |
| "typescript": "^5.9.3", | |
| "vite": "^6.0.0", | |
| "vite-plugin-singlefile": "^2.3.0" | |
| }, | |
| "types": "dist/server.d.ts", | |
| "exports": { | |
| ".": { | |
| "types": "./dist/server.d.ts", | |
| "default": "./dist/server.js" | |
| } | |
| }, | |
| "bin": { | |
| "mcp-video-resource-server": "dist/index.js" | |
| } | |
| } | |