webclaw/packages/create-webclaw/package.json
Valerio d497c5ee97 fix(create-webclaw): add files allowlist so npm never ships secrets
npm pack was bundling packages/create-webclaw/.mcpregistry_*_token (the
mcp-publisher credential files) into the tarball because the package had no
'files' field and npm did not honor the repo-root .gitignore. Restrict the
published package to index.mjs + README.md (matches @webclaw/mcp).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-22 12:08:32 +02:00

45 lines
844 B
JSON

{
"name": "create-webclaw",
"version": "0.1.7",
"description": "Set up webclaw MCP server for AI agents (Claude, Cursor, Windsurf, OpenCode, Codex, Antigravity)",
"bin": {
"create-webclaw": "./index.mjs"
},
"type": "module",
"files": [
"index.mjs",
"README.md"
],
"keywords": [
"webclaw",
"mcp",
"mcp-server",
"ai",
"ai-agent",
"scraping",
"web-scraping",
"scraper",
"crawler",
"extract",
"markdown",
"llm",
"claude",
"cursor",
"windsurf",
"opencode",
"codex",
"antigravity",
"tls-fingerprint",
"cloudflare-bypass"
],
"author": "webclaw",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/0xMassi/webclaw"
},
"homepage": "https://webclaw.io",
"engines": {
"node": ">=18"
}
}