-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.46 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
63
64
65
{
"name": "@tmhs/screencast-mcp",
"version": "0.9.0",
"description": "MCP server for Windows screen recording, frame sampling, and minimal ffmpeg edits",
"type": "module",
"main": "dist/index.js",
"bin": {
"screencast-mcp": "dist/index.js"
},
"files": [
"dist",
"assets",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build"
},
"author": "TMHSDigital",
"license": "CC-BY-NC-ND-4.0",
"repository": {
"type": "git",
"url": "git+https://github.com/TMHSDigital/screencast-mcp.git"
},
"homepage": "https://github.com/TMHSDigital/screencast-mcp#readme",
"bugs": {
"url": "https://github.com/TMHSDigital/screencast-mcp/issues"
},
"keywords": [
"mcp",
"model-context-protocol",
"screen-recording",
"screenshot",
"ffmpeg",
"gdigrab",
"windows",
"developer-tools"
],
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"zod": "^3.24.4"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^22.15.3",
"eslint": "^10.5.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.61.1",
"vitest": "^4.1.2"
}
}