mirror of
https://github.com/upstash/context7.git
synced 2026-09-14 19:09:34 +08:00
6255e26677
* init sdk and monorepo * init sdk and monorepo * comment cleanup * remove bun.lock * cleanup: remove sdk package and deps * update tsconfigs * chore: add temp changelog * ci: update scripts * ci: update github workflows * fmt: workflows * fix: search libraries response type * ci: update pack-mcpb script * update keywords and author * update eslint config for mcp * include license and readme in build * update release.yaml * add readme symlink * include readme in mcp package * chore: add canary release workflow and update configs * chore: format files * ci: add changeset check workflow * canary release trigger * ci: login to npm before release * bump mcp version on package * remove pr trigger from canary release * ci: remove package input * add mcp lint command * update format scripts
59 lines
1.7 KiB
JSON
59 lines
1.7 KiB
JSON
{
|
|
"name": "@upstash/context7-mcp",
|
|
"version": "1.0.30",
|
|
"mcpName": "io.github.upstash/context7",
|
|
"description": "MCP server for Context7",
|
|
"scripts": {
|
|
"build": "tsc && chmod 755 dist/index.js",
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"lint": "eslint .",
|
|
"lint:check": "eslint .",
|
|
"format": "prettier --write .",
|
|
"format:check": "prettier --check .",
|
|
"dev": "tsc --watch",
|
|
"start": "node dist/index.js --transport http",
|
|
"pack-mcpb": "pnpm install && pnpm run build && rm -rf node_modules && pnpm install --prod && mv mcpb/.mcpbignore .mcpbignore && mv mcpb/manifest.json manifest.json && mv public/icon.png icon.png && mcpb validate manifest.json && mcpb pack . mcpb/context7.mcpb && mv manifest.json mcpb/manifest.json && mv .mcpbignore mcpb/.mcpbignore && mv icon.png public/icon.png && bun install"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/upstash/context7.git",
|
|
"directory": "packages/mcp"
|
|
},
|
|
"keywords": [
|
|
"modelcontextprotocol",
|
|
"mcp",
|
|
"context7",
|
|
"vibe-coding",
|
|
"developer tools",
|
|
"documentation",
|
|
"context"
|
|
],
|
|
"author": "abdush",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"bin": {
|
|
"context7-mcp": "dist/index.js"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"LICENSE",
|
|
"README.md"
|
|
],
|
|
"bugs": {
|
|
"url": "https://github.com/upstash/context7/issues"
|
|
},
|
|
"homepage": "https://github.com/upstash/context7#readme",
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.17.5",
|
|
"@types/express": "^5.0.4",
|
|
"commander": "^14.0.0",
|
|
"express": "^5.1.0",
|
|
"undici": "^6.6.3",
|
|
"zod": "^3.24.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.13.14",
|
|
"typescript": "^5.8.2"
|
|
}
|
|
}
|