-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1 KB
/
package.json
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
{
"name": "@felores/placid-mcp-server",
"version": "1.5.0",
"description": "Placid.app MCP server to list templates and generate images and videos",
"type": "module",
"main": "build/index.js",
"bin": {
"placid-mcp": "./bin/placid-mcp.js"
},
"files": [
"build",
"bin"
],
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"test": "jest",
"dev": "ts-node-dev --respawn src/index.ts",
"prepare": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "latest",
"dotenv": "^16.4.7"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"jest": "^29.0.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.0"
},
"keywords": [
"placid",
"mcp",
"server",
"image",
"video",
"template",
"ai",
"image-generation",
"video-generation"
],
"author": "felores",
"license": "MIT",
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public"
}
}