{ "name": "@ticktockbent/charlotte", "version": "0.8.0", "description": "Token-efficient browser MCP server — structured web pages for AI agents, not raw accessibility dumps", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "charlotte": "dist/index.js" }, "license": "MIT", "author": "ticktockbent", "repository": { "type": "git", "url": "git+https://github.com/ticktockbent/charlotte.git" }, "bugs": { "url": "https://github.com/ticktockbent/charlotte/issues" }, "homepage": "https://github.com/ticktockbent/charlotte#readme", "keywords": [ "mcp", "mcp-server", "browser-mcp", "model-context-protocol", "browser-automation", "web-scraping", "ai-agent", "token-efficient", "structured-browsing", "playwright-alternative", "accessibility-tree", "headless-browser", "puppeteer", "web-testing" ], "scripts": { "dev": "tsx watch src/index.ts", "build": "tsc -p tsconfig.build.json", "prepublishOnly": "npm run build && npm test", "start": "node dist/index.js", "test": "vitest run", "test:watch": "vitest", "test:unit": "vitest run tests/unit/", "test:integration": "vitest run tests/integration/", "test:coverage": "vitest run --coverage", "goldens:refresh": "tsx scripts/refresh-goldens.ts", "report:remote": "tsx benchmarks/remote-report.ts", "lint": "eslint src/ tests/", "lint:docs": "tsx scripts/lint-docs.mts", "audit:check": "tsx scripts/audit-check.mts", "lint:fix": "eslint src/ tests/ --fix", "format": "prettier --write 'src/**/*.ts' 'tests/**/*.ts'", "format:check": "prettier --check 'src/**/*.ts' 'tests/**/*.ts'" }, "dependencies": { "@modelcontextprotocol/node": "^2.0.0", "@modelcontextprotocol/server": "^2.0.0", "chokidar": "^4.0.0", "express": "^5.2.1", "ipaddr.js": "^2.4.0", "puppeteer": "^24.0.0", "zod": "^4.2.0" }, "devDependencies": { "@eslint/js": "^9.39.4", "@modelcontextprotocol/client": "^2.0.0", "@types/express": "^4.17.0", "@types/node": "^22.0.0", "@vitest/coverage-v8": "^4.1.11", "eslint": "^10.7.0", "eslint-config-prettier": "^10.1.8", "prettier": "^3.8.1", "tsx": "^4.19.0", "typescript": "^5.7.0", "typescript-eslint": "^8.56.1", "vitest": "^4.1.11" }, "files": [ "dist", "README.md", "LICENSE", "CHANGELOG.md" ], "engines": { "node": ">=20.0.0" }, "mcpName": "io.github.TickTockBent/charlotte", "publishConfig": { "access": "public" }, "overrides": { "yauzl": "3.2.1" } }