@j0hanz/superfetch 2.4.3 → 2.4.4
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/dist/cache.d.ts +8 -8
- package/dist/cache.js +277 -264
- package/dist/crypto.js +4 -3
- package/dist/dom-noise-removal.js +355 -297
- package/dist/fetch.d.ts +13 -7
- package/dist/fetch.js +636 -690
- package/dist/http-native.js +535 -474
- package/dist/instructions.md +38 -27
- package/dist/language-detection.js +190 -153
- package/dist/markdown-cleanup.js +171 -158
- package/dist/mcp.js +161 -1
- package/dist/resources.d.ts +2 -0
- package/dist/resources.js +44 -0
- package/dist/session.js +144 -105
- package/dist/tasks.d.ts +37 -0
- package/dist/tasks.js +66 -0
- package/dist/tools.d.ts +6 -9
- package/dist/tools.js +166 -136
- package/dist/transform.d.ts +3 -1
- package/dist/transform.js +680 -778
- package/package.json +6 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@j0hanz/superfetch",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.4",
|
|
4
4
|
"mcpName": "io.github.j0hanz/superfetch",
|
|
5
5
|
"description": "Intelligent web content fetcher MCP server that converts HTML to clean, AI-readable Markdown",
|
|
6
6
|
"type": "module",
|
|
@@ -34,13 +34,13 @@
|
|
|
34
34
|
"superfetch"
|
|
35
35
|
],
|
|
36
36
|
"scripts": {
|
|
37
|
-
"clean": "node scripts/
|
|
38
|
-
"validate:instructions": "node scripts/validate
|
|
39
|
-
"build": "
|
|
40
|
-
"copy:assets": "node scripts/copy
|
|
37
|
+
"clean": "node scripts/build.mjs clean",
|
|
38
|
+
"validate:instructions": "node scripts/build.mjs validate:instructions",
|
|
39
|
+
"build": "node scripts/build.mjs",
|
|
40
|
+
"copy:assets": "node scripts/build.mjs copy:assets",
|
|
41
41
|
"prepare": "npm run build",
|
|
42
42
|
"dev": "tsc --watch --preserveWatchOutput",
|
|
43
|
-
"dev:run": "node --watch dist/index.js",
|
|
43
|
+
"dev:run": "node --env-file=.env --watch dist/index.js",
|
|
44
44
|
"start": "node dist/index.js",
|
|
45
45
|
"format": "prettier --write .",
|
|
46
46
|
"type-check": "tsc --noEmit",
|