-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.36 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@mcpware/pagecast",
"version": "0.3.0",
"description": "Record any browser page as GIF or video via MCP — with auto-zoom on interactions. Powered by Playwright + ffmpeg + Remotion.",
"type": "module",
"bin": {
"pagecast": "./src/index.js"
},
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js",
"postinstall": "npx playwright install chromium 2>/dev/null || true"
},
"keywords": [
"mcp",
"mcp-server",
"pagecast",
"screen-recorder",
"screen-recording",
"playwright",
"gif",
"gif-recorder",
"video",
"recording",
"demo",
"screencast",
"webm",
"browser",
"automation",
"documentation",
"claude",
"model-context-protocol",
"auto-zoom",
"demo-recording",
"remotion"
],
"mcpName": "io.github.mcpware/pagecast",
"author": "mcpware",
"license": "MIT",
"publishConfig": {
"provenance": true
},
"repository": {
"type": "git",
"url": "https://github.com/mcpware/pagecast"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"playwright": "^1.52.0",
"zod": "^3.23.0"
},
"optionalDependencies": {
"remotion": "^4.0.0",
"@remotion/cli": "^4.0.0",
"@remotion/media-utils": "^4.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"engines": {
"node": ">=20.0.0"
}
}