-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.35 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.35 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
{
"name": "webmcp-auto",
"version": "0.1.0",
"description": "Auto-instrumentor for WebMCP — drop one script tag on any site to make it agent-ready. Scans forms, buttons, and links, then auto-generates and registers WebMCP tool definitions.",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"browser": "dist/webmcp-auto.iife.js",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"browser": "./dist/webmcp-auto.iife.js"
}
},
"files": ["dist", "src"],
"scripts": {
"build": "esbuild src/index.js --bundle --format=esm --outfile=dist/index.mjs && esbuild src/index.js --bundle --format=cjs --outfile=dist/index.cjs && esbuild src/index.js --bundle --format=iife --global-name=WebMCPAuto --outfile=dist/webmcp-auto.iife.js",
"build:cdn": "esbuild src/index.js --bundle --format=iife --global-name=WebMCPAuto --minify --outfile=dist/webmcp-auto.min.js",
"dev": "esbuild src/index.js --bundle --format=iife --global-name=WebMCPAuto --outfile=dist/webmcp-auto.iife.js --watch --servedir=demo"
},
"keywords": ["webmcp", "mcp", "ai-agents", "auto-instrument", "browser-agents", "agentic-web"],
"author": "Syed M. Affan",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/smaffan/webmcp-auto"
},
"devDependencies": {
"esbuild": "^0.20.0"
}
}