@upstash/context7-mcp 1.0.31-canary-20251124145014 → 1.0.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +5 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@upstash/context7-mcp",
|
|
3
|
-
"version": "1.0.31
|
|
3
|
+
"version": "1.0.31",
|
|
4
4
|
"mcpName": "io.github.upstash/context7",
|
|
5
5
|
"description": "MCP server for Context7",
|
|
6
6
|
"repository": {
|
|
@@ -47,6 +47,10 @@
|
|
|
47
47
|
"scripts": {
|
|
48
48
|
"build": "tsc && chmod 755 dist/index.js",
|
|
49
49
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
50
|
+
"lint": "eslint .",
|
|
51
|
+
"lint:check": "eslint .",
|
|
52
|
+
"format": "prettier --write .",
|
|
53
|
+
"format:check": "prettier --check .",
|
|
50
54
|
"dev": "tsc --watch",
|
|
51
55
|
"start": "node dist/index.js --transport http",
|
|
52
56
|
"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"
|