-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.75 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.75 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@mcp-b/extension-tools",
"version": "2.2.0",
"description": "62+ Chrome Extension API tools for Model Context Protocol (MCP) - Let AI agents control tabs, bookmarks, history, storage, and more",
"keywords": [
"ai-agents",
"ai-browser-control",
"anthropic",
"automation",
"bookmarks-api",
"browser-automation",
"browser-control",
"browser-extension",
"chatgpt",
"chrome-api",
"chrome-cookies",
"chrome-extension",
"chrome-history",
"chrome-scripting",
"chrome-tabs",
"claude",
"copilot",
"cursor",
"extension-api",
"gemini",
"llm",
"manifest-v3",
"mcp",
"model-context-protocol",
"openai",
"storage-api",
"tabs-api",
"webmcp"
],
"homepage": "https://docs.mcp-b.ai/packages/extension-tools",
"bugs": {
"url": "https://github.com/WebMCP-org/npm-packages/issues"
},
"license": "MIT",
"author": "Alex Nahas",
"repository": {
"type": "git",
"url": "git+https://github.com/WebMCP-org/npm-packages.git",
"directory": "packages/extension-tools"
},
"files": [
"dist",
"README.md"
],
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "vp pack --filter main",
"check": "vp check --fix",
"clean": "rm -rf dist",
"format": "vp fmt --write",
"generate-chrome-api-tools": "pnpx tsx src/aiScripts/generate-chrome-api-tools.ts",
"lint": "vp lint --fix",
"prepublishOnly": "node ../../scripts/validate-publish.js && pnpm run build",
"publish:dry": "pnpm publish --access public --dry-run",
"publish:npm": "pnpm publish --access public",
"test:e2e": "pnpm --filter @mcp-b/transports build && pnpm --filter @mcp-b/webmcp-ts-sdk build && vp pack --filter e2e-extension && node e2e/build-extension.mjs && node --experimental-strip-types --test e2e/extension-runtime.e2e.test.ts",
"typecheck": "tsc -p tsconfig.typecheck.json --noEmit",
"version:major": "pnpm version major --no-git-tag-version",
"version:minor": "pnpm version minor --no-git-tag-version",
"version:patch": "pnpm version patch --no-git-tag-version"
},
"dependencies": {
"@mcp-b/smart-dom-reader": "workspace:*",
"@mcp-b/webmcp-ts-sdk": "workspace:*",
"zod": "catalog:"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"@types/chrome": "catalog:",
"@types/node": "catalog:",
"cheerio": "^1.1.2",
"dotenv": "^17.2.3",
"playwright": "^1.54.2",
"typescript": "catalog:",
"vite-plus": "catalog:"
}
}