davidberenstein1957 commited on
Commit
ae16005
·
verified ·
1 Parent(s): 9737764

Uploaded package.json from GitHub repository

Browse files
Files changed (1) hide show
  1. package.json +29 -0
package.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "@modelcontextprotocol/server-puppeteer",
3
+ "version": "0.6.2",
4
+ "description": "MCP server for browser automation using Puppeteer",
5
+ "license": "MIT",
6
+ "author": "Anthropic, PBC (https://anthropic.com)",
7
+ "homepage": "https://modelcontextprotocol.io",
8
+ "bugs": "https://github.com/modelcontextprotocol/servers/issues",
9
+ "type": "module",
10
+ "bin": {
11
+ "mcp-server-puppeteer": "dist/index.js"
12
+ },
13
+ "files": [
14
+ "dist"
15
+ ],
16
+ "scripts": {
17
+ "build": "tsc && shx chmod +x dist/*.js",
18
+ "prepare": "npm run build",
19
+ "watch": "tsc --watch"
20
+ },
21
+ "dependencies": {
22
+ "@modelcontextprotocol/sdk": "1.0.1",
23
+ "puppeteer": "^23.4.0"
24
+ },
25
+ "devDependencies": {
26
+ "shx": "^0.3.4",
27
+ "typescript": "^5.6.2"
28
+ }
29
+ }