mcp-researchpowerpack 3.6.17 → 3.6.18

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.
Files changed (2) hide show
  1. package/dist/index.js +0 -0
  2. package/package.json +14 -15
package/dist/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-researchpowerpack",
3
- "version": "3.6.17",
3
+ "version": "3.6.18",
4
4
  "description": "The ultimate research MCP toolkit: Reddit mining, web search with CTR aggregation, AI-powered deep research, and intelligent web scraping - all in one modular package",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -11,19 +11,6 @@
11
11
  "files": [
12
12
  "dist"
13
13
  ],
14
- "scripts": {
15
- "build": "tsc && cp -r src/config/yaml dist/config/",
16
- "prepublishOnly": "npm run build",
17
- "dev": "tsx src/index.ts",
18
- "start": "node dist/index.js",
19
- "typecheck": "tsc --noEmit",
20
- "test:web-search": "tsx tests/test-web-search.ts",
21
- "test:reddit-search": "tsx tests/test-reddit-search.ts",
22
- "test:scrape-links": "tsx tests/test-scrape-links.ts",
23
- "test:deep-research": "tsx tests/test-deep-research.ts",
24
- "test:all": "npm run test:web-search && npm run test:reddit-search && npm run test:scrape-links && npm run test:deep-research",
25
- "test:check": "tsx tests/check-setup.ts"
26
- },
27
14
  "keywords": [
28
15
  "mcp",
29
16
  "research",
@@ -69,5 +56,17 @@
69
56
  },
70
57
  "engines": {
71
58
  "node": ">=20.0.0"
59
+ },
60
+ "scripts": {
61
+ "build": "tsc && cp -r src/config/yaml dist/config/",
62
+ "dev": "tsx src/index.ts",
63
+ "start": "node dist/index.js",
64
+ "typecheck": "tsc --noEmit",
65
+ "test:web-search": "tsx tests/test-web-search.ts",
66
+ "test:reddit-search": "tsx tests/test-reddit-search.ts",
67
+ "test:scrape-links": "tsx tests/test-scrape-links.ts",
68
+ "test:deep-research": "tsx tests/test-deep-research.ts",
69
+ "test:all": "pnpm test:web-search && pnpm test:reddit-search && pnpm test:scrape-links && pnpm test:deep-research",
70
+ "test:check": "tsx tests/check-setup.ts"
72
71
  }
73
- }
72
+ }