@elizaos/plugin-web-search 0.1.7-alpha.2 → 0.1.8-alpha.1
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 +225 -0
- package/package.json +31 -17
- package/Readme.md +0 -180
- package/dist/index.d.ts +0 -5
- package/dist/index.js +0 -576
- package/dist/index.js.map +0 -1
- package/tsup.config.ts +0 -21
package/tsup.config.ts
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { defineConfig } from "tsup";
|
|
2
|
-
|
|
3
|
-
export default defineConfig({
|
|
4
|
-
entry: ["src/index.ts"],
|
|
5
|
-
outDir: "dist",
|
|
6
|
-
sourcemap: true,
|
|
7
|
-
clean: true,
|
|
8
|
-
format: ["esm"], // Ensure you're targeting CommonJS
|
|
9
|
-
external: [
|
|
10
|
-
"dotenv", // Externalize dotenv to prevent bundling
|
|
11
|
-
"fs", // Externalize fs to use Node.js built-in module
|
|
12
|
-
"path", // Externalize other built-ins if necessary
|
|
13
|
-
"@reflink/reflink",
|
|
14
|
-
"@node-llama-cpp",
|
|
15
|
-
"https",
|
|
16
|
-
"http",
|
|
17
|
-
"agentkeepalive",
|
|
18
|
-
"zod",
|
|
19
|
-
// Add other modules you want to externalize
|
|
20
|
-
],
|
|
21
|
-
});
|