-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.29 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.29 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
{
"name": "@plainly-videos/mcp-server",
"version": "1.0.3",
"description": "MCP server for Plainly Videos that allows browsing designs and projects, as well as rendering videos.",
"license": "MIT",
"author": "PlainlyVideos <contact@planlyvideos.com>",
"homepage": "https://plainlyvideos.com",
"repository": {
"type": "git",
"url": "git+https://github.com/plainly-videos/mcp-server.git"
},
"engines": {
"node": ">=18"
},
"keywords": [
"plainly",
"plainlyvideos",
"mcp",
"mcp-server",
"modelcontextprotocol",
"aftereffects",
"adobe-after-effects",
"video-api",
"video-automation",
"video-processing",
"video-rendering",
"automation",
"api",
"javascript",
"typescript"
],
"type": "module",
"module": "src/smithery.ts",
"bin": "dist/cli.js",
"files": [
"dist"
],
"scripts": {
"dev": "vite build --watch",
"build": "tsc --noEmit && vite build",
"typecheck": "tsc --noEmit",
"start": "node dist/index.js"
},
"packageManager": "yarn@4.9.2",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.24.3",
"axios": "^1.12.2",
"zod": "^3.25.76"
},
"devDependencies": {
"@smithery/sdk": "^1.6.4",
"@types/node": "^22.10.6",
"typescript": "^5.7.3",
"vite": "^7.2.4"
}
}