-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 966 Bytes
/
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
{
"name": "mcp-file-preview",
"version": "1.0.0",
"description": "MCP server for previewing local HTML files and capturing screenshots",
"main": "build/index.js",
"type": "module",
"bin": {
"mcp-file-preview": "./build/index.js"
},
"scripts": {
"build": "tsc --listFiles --listEmittedFiles && mkdir -p build && chmod +x build/index.js",
"start": "node build/index.js",
"dev": "ts-node --esm src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"mcp",
"file-preview",
"html",
"screenshot",
"claude"
],
"author": "Sean Horvath",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/seanivore/mcp-file-preview.git"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"puppeteer": "^23.11.1"
},
"devDependencies": {
"typescript": "^5.3.3",
"@types/node": "^20.10.5",
"@types/puppeteer": "^7.0.4"
}
}