-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.41 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.41 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
{
"name": "seedream-v4-fal-server",
"version": "1.0.0",
"description": "MCP server for generating images using Bytedance's SeedDream 4.0 model via FAL AI - A new-generation image creation model that integrates image generation and image editing capabilities into a single, unified architecture",
"private": true,
"type": "module",
"bin": "./build/index.js",
"files": [
"build"
],
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"prepare": "npm run build",
"watch": "tsc --watch",
"test": "node test-server.js",
"get-path": "node get-path.js",
"inspector": "npx @modelcontextprotocol/inspector build/index.js"
},
"keywords": [
"mcp",
"model-context-protocol",
"image-generation",
"seedream",
"seedream-4.0",
"bytedance",
"fal-ai",
"ai",
"text-to-image",
"image-editing"
],
"author": "SeedDream MCP Server",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/PierrunoYT/seedream-v4-fal-mcp-server.git"
},
"bugs": {
"url": "https://github.com/PierrunoYT/seedream-v4-fal-mcp-server/issues"
},
"homepage": "https://github.com/PierrunoYT/seedream-v4-fal-mcp-server#readme",
"dependencies": {
"@fal-ai/client": "^1.5.0",
"@modelcontextprotocol/sdk": "0.6.0"
},
"devDependencies": {
"@types/node": "^20.11.24",
"typescript": "^5.3.3"
}
}