context7/package.json

52 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2025-03-30 10:14:50 +03:00
{
"name": "@upstash/context7-mcp",
"version": "1.0.0",
2025-03-30 10:14:50 +03:00
"description": "MCP server for Context7",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
2025-04-11 12:42:37 +03:00
"build": "tsc && chmod 755 dist/index.js",
2025-03-30 10:14:50 +03:00
"format": "prettier --write .",
2025-05-28 09:53:26 -07:00
"lint": "eslint \"**/*.{js,ts,tsx}\" --fix",
2025-06-01 16:41:55 +01:00
"lint:check": "eslint \"**/*.{js,ts,tsx}\"",
"start": "node dist/index.js --transport http"
2025-03-30 10:14:50 +03:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/upstash/context7.git"
2025-03-30 10:14:50 +03:00
},
2025-04-19 14:53:04 +03:00
"keywords": [
"modelcontextprotocol",
"mcp",
"context7"
],
"author": "abdush",
2025-03-30 10:14:50 +03:00
"license": "MIT",
"type": "module",
"bin": {
2025-04-11 11:01:09 +02:00
"context7-mcp": "dist/index.js"
2025-03-30 10:14:50 +03:00
},
"files": [
2025-04-11 11:01:09 +02:00
"dist"
2025-03-30 10:14:50 +03:00
],
"bugs": {
"url": "https://github.com/upstash/context7/issues"
2025-03-30 10:14:50 +03:00
},
"homepage": "https://github.com/upstash/context7#readme",
2025-03-30 10:14:50 +03:00
"dependencies": {
2025-05-28 00:48:25 +03:00
"@modelcontextprotocol/sdk": "^1.12.0",
"commander": "^14.0.0",
2025-03-30 10:14:50 +03:00
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.13.14",
"@typescript-eslint/eslint-plugin": "^8.28.0",
"@typescript-eslint/parser": "^8.28.0",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.5",
"prettier": "^3.5.3",
"typescript": "^5.8.2",
"typescript-eslint": "^8.28.0"
}
}