@memoryblock/plugin-fetch-webpage 0.1.3 → 0.1.5
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/README.md +9 -8
- package/package.json +6 -3
package/README.md
CHANGED
|
@@ -12,17 +12,18 @@ This package handles:
|
|
|
12
12
|
**memoryblock** is a highly modular system. Here are the official packages:
|
|
13
13
|
|
|
14
14
|
**The Core**
|
|
15
|
-
* [**memoryblock**](https://www.npmjs.com/package/memoryblock) -
|
|
16
|
-
* [**@memoryblock/
|
|
17
|
-
* [**@memoryblock/
|
|
18
|
-
* [**@memoryblock/
|
|
15
|
+
* [**memoryblock**](https://www.npmjs.com/package/memoryblock) - CLI orchestrator and command routing.
|
|
16
|
+
* [**@memoryblock/core**](https://www.npmjs.com/package/@memoryblock/core) - Engine runtime, memory manager, gatekeeper.
|
|
17
|
+
* [**@memoryblock/types**](https://www.npmjs.com/package/@memoryblock/types) - Shared TypeScript definitions and schemas.
|
|
18
|
+
* [**@memoryblock/locale**](https://www.npmjs.com/package/@memoryblock/locale) - Localization strings and utilities.
|
|
19
19
|
|
|
20
20
|
**Integrations & Tooling**
|
|
21
|
-
* [**@memoryblock/adapters**](https://www.npmjs.com/package/@memoryblock/adapters) - LLM adapters (OpenAI, Anthropic, Bedrock, etc).
|
|
21
|
+
* [**@memoryblock/adapters**](https://www.npmjs.com/package/@memoryblock/adapters) - LLM provider adapters (OpenAI, Anthropic, Bedrock, etc).
|
|
22
22
|
* [**@memoryblock/channels**](https://www.npmjs.com/package/@memoryblock/channels) - Communication channels (CLI, Telegram, Web).
|
|
23
|
-
* [**@memoryblock/tools**](https://www.npmjs.com/package/@memoryblock/tools) -
|
|
24
|
-
* [**@memoryblock/
|
|
25
|
-
* [**@memoryblock/
|
|
23
|
+
* [**@memoryblock/tools**](https://www.npmjs.com/package/@memoryblock/tools) - Tool registry and built-in definitions.
|
|
24
|
+
* [**@memoryblock/daemon**](https://www.npmjs.com/package/@memoryblock/daemon) - Background process spawner and manager.
|
|
25
|
+
* [**@memoryblock/api**](https://www.npmjs.com/package/@memoryblock/api) - HTTP/WebSocket API server.
|
|
26
|
+
* [**@memoryblock/web**](https://www.npmjs.com/package/@memoryblock/web) - Front-end dashboard static files.
|
|
26
27
|
|
|
27
28
|
**Plugins**
|
|
28
29
|
* [**@memoryblock/plugin-installer**](https://www.npmjs.com/package/@memoryblock/plugin-installer) - Plugin installer and registry manager.
|
package/package.json
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memoryblock/plugin-fetch-webpage",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Official plugin for fetching and parsing webpage content.",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
6
8
|
"files": [
|
|
7
9
|
"dist/"
|
|
8
10
|
],
|
|
@@ -13,10 +15,11 @@
|
|
|
13
15
|
}
|
|
14
16
|
},
|
|
15
17
|
"scripts": {
|
|
16
|
-
"build": "tsc -p tsconfig.json"
|
|
18
|
+
"build": "tsc -p tsconfig.json",
|
|
19
|
+
"prepublishOnly": "tsc -p tsconfig.json"
|
|
17
20
|
},
|
|
18
21
|
"dependencies": {
|
|
19
|
-
"@memoryblock/types": "^0.1.
|
|
22
|
+
"@memoryblock/types": "^0.1.5"
|
|
20
23
|
},
|
|
21
24
|
"keywords": [
|
|
22
25
|
"memoryblock",
|