package.json•4.11 kB
{
"name": "@arabold/docs-mcp-server",
"version": "1.26.0",
"description": "MCP server for fetching and searching documentation",
"type": "module",
"bin": {
"docs-mcp-server": "dist/index.js"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/arabold/docs-mcp-server.git"
},
"files": [
"dist",
"public",
"db",
"README.md",
"LICENSE",
"package.json"
],
"scripts": {
"prepare": "husky || true",
"build": "vite build --config vite.config.web.ts && vite build",
"start": "node --enable-source-maps dist/index.js",
"cli": "node --enable-source-maps dist/index.js",
"server": "node --enable-source-maps dist/index.ts",
"web": "node --enable-source-maps dist/index.ts web",
"dev": "npm-run-all --parallel dev:server dev:web",
"dev:server": "vite-node --watch src/index.ts",
"dev:web": "vite build --config vite.config.web.ts --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "vitest run --config test/vitest.config.ts",
"test:e2e:watch": "vitest --config test/vitest.config.ts",
"lint": "biome check .",
"lint:fix": "biome check . --fix",
"format": "biome format . --write",
"postinstall": "echo 'Skipping Playwright browser install. See README.md for details.'"
},
"dependencies": {
"@fastify/formbody": "^8.0.2",
"@fastify/static": "^8.2.0",
"@joplin/turndown-plugin-gfm": "^1.0.62",
"@kitajs/html": "^4.2.9",
"@kitajs/ts-html-plugin": "^4.1.1",
"@langchain/aws": "^0.1.13",
"@langchain/google-genai": "^0.2.16",
"@langchain/google-vertexai": "^0.2.16",
"@langchain/openai": "^0.6.3",
"@modelcontextprotocol/sdk": "^1.17.1",
"@trpc/client": "^11.4.4",
"@trpc/server": "^11.4.4",
"alpinejs": "^3.14.9",
"axios": "^1.11.0",
"axios-retry": "^4.5.0",
"better-sqlite3": "^12.2.0",
"cheerio": "^1.1.2",
"commander": "^14.0.0",
"dompurify": "^3.2.6",
"dotenv": "^17.2.1",
"env-paths": "^3.0.0",
"fastify": "^5.4.0",
"flowbite": "^3.1.2",
"fuse.js": "^7.1.0",
"header-generator": "^2.1.69",
"htmx.org": "^2.0.6",
"iconv-lite": "^0.6.3",
"jose": "^6.0.12",
"jsdom": "^26.1.0",
"langchain": "^0.3.30",
"mime": "^4.0.7",
"minimatch": "^10.0.1",
"playwright": "^1.52.0",
"posthog-node": "^5.7.0",
"psl": "^1.15.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"remark-html": "^16.0.1",
"semver": "^7.7.2",
"sqlite-vec": "^0.1.7-alpha.2",
"tree-sitter": "^0.21.1",
"tree-sitter-javascript": "^0.23.1",
"tree-sitter-python": "^0.21.0",
"tree-sitter-typescript": "^0.23.2",
"turndown": "^7.2.0",
"zod": "^4.0.14"
},
"devDependencies": {
"@biomejs/biome": "^2.1.3",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.3",
"@semantic-release/npm": "^12.0.2",
"@tailwindcss/postcss": "^4.1.11",
"@tailwindcss/vite": "^4.1.11",
"@types/alpinejs": "^3.13.11",
"@types/better-sqlite3": "^7.6.13",
"@types/jsdom": "~21.1.7",
"@types/lint-staged": "~13.3.0",
"@types/node": "^24.1.0",
"@types/node-fetch": "^2.6.13",
"@types/psl": "^1.1.3",
"@types/semver": "^7.7.0",
"@types/turndown": "^5.0.5",
"autoprefixer": "^10.4.21",
"flowbite-typography": "^1.0.5",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"memfs": "^4.34.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.6",
"semantic-release": "^24.2.7",
"tailwindcss": "^4.1.4",
"typescript": "^5.9.2",
"vite": "^6.3.5",
"vite-node": "^3.1.2",
"vite-plugin-dts": "^4.5.4",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=20.0.0"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,json,md}": [
"biome check --write --no-errors-on-unmatched",
"biome format --write --no-errors-on-unmatched"
]
}
}