Skip to content

Commit

Permalink
chore: update dependencies and add new scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
gitw21 committed Nov 29, 2024
1 parent 2578d6f commit 29a2313
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions src/puppeteer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@modelcontextprotocol/server-puppeteer",
"version": "0.5.1",
"version": "0.5.2",
"description": "MCP server for browser automation using Puppeteer",
"license": "MIT",
"author": "Anthropic, PBC (https://anthropic.com)",
Expand All @@ -16,14 +16,24 @@
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsc --watch"
"watch": "tsc --watch",
"test": "jest",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\""
},
"dependencies": {
"@modelcontextprotocol/sdk": "0.5.0",
"puppeteer": "^23.4.0"
"@modelcontextprotocol/sdk": "^0.5.0",
"puppeteer": "^21.5.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.40.0",
"jest": "^29.5.0",
"prettier": "^3.0.0",
"shx": "^0.3.4",
"ts-jest": "^29.1.0",
"typescript": "^5.6.2"
}
}
}

0 comments on commit 29a2313

Please sign in to comment.