diff --git a/docs/docs/advanced/eliza-in-tee.md b/docs/docs/advanced/eliza-in-tee.md index 56eaf9012b3..8146bb2bf58 100644 --- a/docs/docs/advanced/eliza-in-tee.md +++ b/docs/docs/advanced/eliza-in-tee.md @@ -307,7 +307,7 @@ Finally, click on the `Submit` button to deploy your Eliza agent. This will take a few minutes to complete. Once the deployment is complete, you can click on the `View` button to view your Eliza agent. -Here is an example of a deployed agent named `vitailik2077`: +Here is an example of a deployed agent named `vitalik2077`: ![Deployed Agent](https://i.imgur.com/ie8gpg9.png) diff --git a/docs/docs/core/evaluators.md b/docs/docs/core/evaluators.md index 33f8ae6c846..eb45026c14a 100644 --- a/docs/docs/core/evaluators.md +++ b/docs/docs/core/evaluators.md @@ -24,7 +24,7 @@ Evaluators enable agents to: 1. Import the necessary evaluator types: ```typescript -import { Evaluator, IAgentRuntime, Memory, State } from "@elizaos/core-core"; +import { Evaluator, IAgentRuntime, Memory, State } from "@elizaos/core"; ``` 2. Choose or create an evaluator: diff --git a/docs/docs/packages/agent.md b/docs/docs/packages/agent.md index 043813e809d..2085a72b0d0 100644 --- a/docs/docs/packages/agent.md +++ b/docs/docs/packages/agent.md @@ -4,7 +4,7 @@ sidebar_position: 1 # 🤖 Agent Package -The Agent Package (`@eliza/agent`) provides the high-level orchestration layer for Eliza, managing agent lifecycles, character loading, client initialization, and runtime coordination. +The Agent Package (`@elizaos/agent`) provides the high-level orchestration layer for Eliza, managing agent lifecycles, character loading, client initialization, and runtime coordination. ## Architecture Overview diff --git a/docs/docs/packages/plugins.md b/docs/docs/packages/plugins.md index d23a4f928ed..04149e856dd 100644 --- a/docs/docs/packages/plugins.md +++ b/docs/docs/packages/plugins.md @@ -785,7 +785,7 @@ The Form chain plugin enables interaction with Form blockchain's unique SocialFi - **Inputs**: - `subject`: Address to buy curves for - `amount`: Number of curves tokens to buy (defaults to 1) - - `formula`: Curves formula type ("QUADRATIC" or "LOGRITHMIC") + - `formula`: Curves formula type ("QUADRATIC" or "LOGARITHMIC") - **Example**: ```json { @@ -799,48 +799,48 @@ The Form chain plugin enables interaction with Form blockchain's unique SocialFi - **Inputs**: - `subject`: Address whose curves to sell - `amount`: Number of curves tokens to sell (defaults to 1) - - `formula`: Curves formula type ("QUADRATIC" or "LOGRITHMIC") + - `formula`: Curves formula type ("QUADRATIC" or "LOGARITHMIC") 3. `WITHDRAW_CURVES_TOKEN` - Convert curves tokens to their ERC20 equivalent - **Inputs**: - `subject`: Address whose curves to withdraw - `amount`: Number of curves tokens to withdraw (integer values only) - - `formula`: Curves formula type ("QUADRATIC" or "LOGRITHMIC") + - `formula`: Curves formula type ("QUADRATIC" or "LOGARITHMIC") 4. `DEPOSIT_CURVES_TOKEN` - Convert ERC20 tokens back to curves tokens - **Inputs**: - `subject`: Address whose ERC20 to convert - `amount`: Amount in ERC20 decimals (18 decimals precision) - - `formula`: Curves formula type ("QUADRATIC" or "LOGRITHMIC") + - `formula`: Curves formula type ("QUADRATIC" or "LOGARITHMIC") 5. `MINT_CURVES_ERC20` - Mint new ERC20 token for curves holdings - **Inputs**: - `name`: Token name (1-32 characters) - `symbol`: Token symbol (1-8 characters, uppercase) - - `formula`: Curves formula type ("QUADRATIC" or "LOGRITHMIC") + - `formula`: Curves formula type ("QUADRATIC" or "LOGARITHMIC") 6. `GET_CURVES_BALANCE` - Check curves token balance - **Inputs**: - `subject`: Address to check balance for - `owner`: Optional owner address (defaults to connected wallet) - - `formula`: Curves formula type ("QUADRATIC" or "LOGRITHMIC") + - `formula`: Curves formula type ("QUADRATIC" or "LOGARITHMIC") 7. `GET_CURVES_BUY_PRICE` - Get price quote for buying curves - **Inputs**: - `subject`: Address to check price for - `amount`: Number of curves tokens (defaults to 1) - - `formula`: Curves formula type ("QUADRATIC" or "LOGRITHMIC") + - `formula`: Curves formula type ("QUADRATIC" or "LOGARITHMIC") 8. `GET_CURVES_SELL_PRICE` - Get price quote for selling curves - **Inputs**: - `subject`: Address to check price for - `amount`: Number of curves tokens (defaults to 1) - - `formula`: Curves formula type ("QUADRATIC" or "LOGRITHMIC") + - `formula`: Curves formula type ("QUADRATIC" or "LOGARITHMIC") 8. `GET_CURVES_ERC20_DETAILS` - Get curves token respective ERC20 details - **Inputs**: - `subject`: Address to check ERC20 token for - - `formula`: Curves formula type ("QUADRATIC" or "LOGRITHMIC") + - `formula`: Curves formula type ("QUADRATIC" or "LOGARITHMIC") **Providers:** - `curvesFormulaProvider` - Provides context about available curves formulas and their use cases @@ -866,13 +866,13 @@ The Form chain plugin enables interaction with Form blockchain's unique SocialFi **Formula Types:** - `QUADRATIC`: Standard bonding curve for regular use cases -- `LOGRITHMIC`: Optimized for high-volume trading and price stability +- `LOGARITHMIC`: Optimized for high-volume trading and price stability **Best Practices:** - Always check token balances before selling or withdrawing - Use price quotes before executing trades -- For large-scale operations, use the LOGRITHMIC formula +- For large-scale operations, use the LOGARITHMIC formula - Keep track of ERC20 token addresses after minting - Validate token names and symbols before minting - Consider gas costs when executing transactions diff --git a/packages/adapter-mongodb/package.json b/packages/adapter-mongodb/package.json index 7c0acccd80c..68b1dfceef1 100644 --- a/packages/adapter-mongodb/package.json +++ b/packages/adapter-mongodb/package.json @@ -35,5 +35,8 @@ "testMatch": [ "/src/__tests__/**/*.test.ts" ] + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/adapter-pglite/package.json b/packages/adapter-pglite/package.json index 8e52bbf8b37..66b18f65343 100644 --- a/packages/adapter-pglite/package.json +++ b/packages/adapter-pglite/package.json @@ -31,5 +31,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/adapter-postgres/package.json b/packages/adapter-postgres/package.json index 02fbaa7de5c..92abe114e04 100644 --- a/packages/adapter-postgres/package.json +++ b/packages/adapter-postgres/package.json @@ -31,5 +31,8 @@ "scripts": { "build": "tsup --format esm --dts", "dev": "tsup --format esm --dts --watch" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/adapter-qdrant/package.json b/packages/adapter-qdrant/package.json index e34ae0ca180..c31a84e199b 100644 --- a/packages/adapter-qdrant/package.json +++ b/packages/adapter-qdrant/package.json @@ -26,5 +26,8 @@ "build": "tsup --format esm --dts", "dev": "tsup --format esm --dts --watch", "lint": "eslint --fix --cache ." + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/adapter-redis/package.json b/packages/adapter-redis/package.json index 09e003054d7..24d520d95ea 100644 --- a/packages/adapter-redis/package.json +++ b/packages/adapter-redis/package.json @@ -35,5 +35,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/adapter-sqlite/package.json b/packages/adapter-sqlite/package.json index 3051dd9d18d..298e55ab41d 100644 --- a/packages/adapter-sqlite/package.json +++ b/packages/adapter-sqlite/package.json @@ -37,5 +37,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/adapter-sqljs/package.json b/packages/adapter-sqljs/package.json index 11e0c27de0f..44c1d6b3a02 100644 --- a/packages/adapter-sqljs/package.json +++ b/packages/adapter-sqljs/package.json @@ -33,5 +33,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/adapter-supabase/package.json b/packages/adapter-supabase/package.json index 44c551d2802..c2f1c1e5468 100644 --- a/packages/adapter-supabase/package.json +++ b/packages/adapter-supabase/package.json @@ -35,5 +35,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/client-alexa/package.json b/packages/client-alexa/package.json index 0b2ab5ff5b1..a2597d3634b 100644 --- a/packages/client-alexa/package.json +++ b/packages/client-alexa/package.json @@ -38,5 +38,8 @@ "format": "biome format src/", "format:fix": "biome format --write src/", "test": "vitest run" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/client-auto/package.json b/packages/client-auto/package.json index d6e03b58b3a..3db4e179b34 100644 --- a/packages/client-auto/package.json +++ b/packages/client-auto/package.json @@ -36,5 +36,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/client-deva/package.json b/packages/client-deva/package.json index 446208c72b3..d00886cddb3 100644 --- a/packages/client-deva/package.json +++ b/packages/client-deva/package.json @@ -18,5 +18,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/client-direct/package.json b/packages/client-direct/package.json index 870a509060f..cc3d444b913 100644 --- a/packages/client-direct/package.json +++ b/packages/client-direct/package.json @@ -43,5 +43,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/client-discord/package.json b/packages/client-discord/package.json index 00563bb9f89..8bb12a23937 100644 --- a/packages/client-discord/package.json +++ b/packages/client-discord/package.json @@ -43,5 +43,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/client-eliza-home/package.json b/packages/client-eliza-home/package.json index 66c821a531e..20e4f9e532a 100644 --- a/packages/client-eliza-home/package.json +++ b/packages/client-eliza-home/package.json @@ -19,5 +19,8 @@ "test": "vitest run", "test:watch": "vitest watch", "test:coverage": "vitest run --coverage" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/client-farcaster/package.json b/packages/client-farcaster/package.json index e42b50a6fc2..706cbee0dfa 100644 --- a/packages/client-farcaster/package.json +++ b/packages/client-farcaster/package.json @@ -33,5 +33,8 @@ "test": "vitest run", "test:watch": "vitest watch", "test:coverage": "vitest run --coverage" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/client-github/package.json b/packages/client-github/package.json index 62599d0aaab..487e6d584c4 100644 --- a/packages/client-github/package.json +++ b/packages/client-github/package.json @@ -35,5 +35,8 @@ "dev": "tsup --format esm --dts --watch", "test": "vitest run", "test:watch": "vitest" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/client-instagram/package.json b/packages/client-instagram/package.json index 0ea7faa3253..fd69061b596 100644 --- a/packages/client-instagram/package.json +++ b/packages/client-instagram/package.json @@ -34,5 +34,8 @@ "dev": "tsup --format esm --dts --watch", "test": "vitest run", "test:watch": "vitest" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/client-lens/package.json b/packages/client-lens/package.json index d08e3b33325..fcf43edd6f9 100644 --- a/packages/client-lens/package.json +++ b/packages/client-lens/package.json @@ -39,5 +39,8 @@ }, "peerDependencies": { "@elizaos/core": "workspace:*" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/client-simsai/package.json b/packages/client-simsai/package.json index d69f6e9b96e..4b32dec5d84 100644 --- a/packages/client-simsai/package.json +++ b/packages/client-simsai/package.json @@ -32,5 +32,8 @@ "build": "tsup --format esm --dts", "dev": "tsup --format esm --dts --watch", "lint": "eslint --fix" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/client-slack/package.json b/packages/client-slack/package.json index 786fe4862fd..9a8070b6a75 100644 --- a/packages/client-slack/package.json +++ b/packages/client-slack/package.json @@ -52,5 +52,8 @@ }, "engines": { "node": ">=14.0.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/client-telegram-account/package.json b/packages/client-telegram-account/package.json index 4214ce47c38..b306fe2e673 100644 --- a/packages/client-telegram-account/package.json +++ b/packages/client-telegram-account/package.json @@ -38,5 +38,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/client-telegram/package.json b/packages/client-telegram/package.json index 2b3bf77c74c..c28dc0bc57b 100644 --- a/packages/client-telegram/package.json +++ b/packages/client-telegram/package.json @@ -32,5 +32,8 @@ "dev": "tsup --format esm --dts --watch", "test": "vitest run", "test:watch": "vitest" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/client-telegram/src/telegramClient.ts b/packages/client-telegram/src/telegramClient.ts index 3d02441e75d..a7758ce818a 100644 --- a/packages/client-telegram/src/telegramClient.ts +++ b/packages/client-telegram/src/telegramClient.ts @@ -7,7 +7,7 @@ import { getOrCreateRecommenderInBe } from "./getOrCreateRecommenderInBe.ts"; export class TelegramClient { private bot: Telegraf; private runtime: IAgentRuntime; - private messageManager: MessageManager; + public messageManager: MessageManager; private backend; private backendToken; private tgTrader; diff --git a/packages/client-twitter/package.json b/packages/client-twitter/package.json index defe0c89e77..82525ccff9c 100644 --- a/packages/client-twitter/package.json +++ b/packages/client-twitter/package.json @@ -37,5 +37,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/client-twitter/src/post.ts b/packages/client-twitter/src/post.ts index 24ec2e7768d..b194caec765 100644 --- a/packages/client-twitter/src/post.ts +++ b/packages/client-twitter/src/post.ts @@ -554,6 +554,9 @@ export class TwitterPostClient { const parsedResponse = parseJSONObjectFromText(rawTweetContent); if (parsedResponse?.text) { tweetTextForPosting = parsedResponse.text; + } else { + // If not JSON, use the raw text directly + tweetTextForPosting = rawTweetContent.trim(); } if ( diff --git a/packages/client-xmtp/package.json b/packages/client-xmtp/package.json index 047e8782e89..8d5827ed9ec 100644 --- a/packages/client-xmtp/package.json +++ b/packages/client-xmtp/package.json @@ -15,5 +15,8 @@ "build": "tsup --format esm --dts", "dev": "tsup --format esm --dts --watch", "lint": "eslint --fix --cache ." + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/core/__tests__/models.test.ts b/packages/core/__tests__/models.test.ts index 52c1649bee0..560d225383e 100644 --- a/packages/core/__tests__/models.test.ts +++ b/packages/core/__tests__/models.test.ts @@ -1,4 +1,4 @@ -import { getModel, getEndpoint, models } from "../src/models.ts"; +import { getModelSettings, getImageModelSettings, getEndpoint, models } from "../src/models.ts"; import { ModelProviderName, ModelClass } from "../src/types.ts"; import { describe, test, expect, vi } from "vitest"; @@ -129,22 +129,22 @@ describe("Model Provider Configuration", () => { }); describe("Livepeer Provider", () => { test("should have correct endpoint configuration", () => { - expect(models[ModelProviderName.LIVEPEER].endpoint).toBe("http://gateway.test-gateway"); + expect(getEndpoint(ModelProviderName.LIVEPEER)).toBe("http://gateway.test-gateway"); }); test("should have correct model mappings", () => { const livepeerModels = models[ModelProviderName.LIVEPEER].model; - expect(livepeerModels[ModelClass.SMALL]).toBe("meta-llama/Meta-Llama-3.1-8B-Instruct"); - expect(livepeerModels[ModelClass.MEDIUM]).toBe("meta-llama/Meta-Llama-3.1-8B-Instruct"); - expect(livepeerModels[ModelClass.LARGE]).toBe("meta-llama/Meta-Llama-3.1-8B-Instruct"); - expect(livepeerModels[ModelClass.IMAGE]).toBe("ByteDance/SDXL-Lightning"); + expect(livepeerModels[ModelClass.SMALL]?.name).toBe("meta-llama/Meta-Llama-3.1-8B-Instruct"); + expect(livepeerModels[ModelClass.MEDIUM]?.name).toBe("meta-llama/Meta-Llama-3.1-8B-Instruct"); + expect(livepeerModels[ModelClass.LARGE]?.name).toBe("meta-llama/Meta-Llama-3.1-8B-Instruct"); + expect(livepeerModels[ModelClass.IMAGE]?.name).toBe("ByteDance/SDXL-Lightning"); }); test("should have correct settings configuration", () => { - const settings = models[ModelProviderName.LIVEPEER].settings; - expect(settings.maxInputTokens).toBe(128000); - expect(settings.maxOutputTokens).toBe(8192); - expect(settings.temperature).toBe(0); + const settings = getModelSettings(ModelProviderName.LIVEPEER, ModelClass.LARGE); + expect(settings?.maxInputTokens).toBe(8000); + expect(settings?.maxOutputTokens).toBe(8192); + expect(settings?.temperature).toBe(0); }); }); }); @@ -169,10 +169,10 @@ describe("Model Retrieval Functions", () => { ).toBe("nousresearch/hermes-3-llama-3.1-405b"); }); - test("should throw error for invalid model provider", () => { - expect(() => - getModel("INVALID_PROVIDER" as any, ModelClass.SMALL) - ).toThrow(); + test("Test to ensure an invalid model provider returns undefined", () => { + expect( + getModelSettings("INVALID_PROVIDER" as any, ModelClass.SMALL) + ).toBe(undefined); }); }); @@ -250,12 +250,12 @@ describe("Environment Variable Integration", () => { describe("Generation with Livepeer", () => { test("should have correct image generation settings", () => { const livepeerConfig = models[ModelProviderName.LIVEPEER]; - expect(livepeerConfig.model[ModelClass.IMAGE]).toBe("ByteDance/SDXL-Lightning"); - expect(livepeerConfig.settings.temperature).toBe(0); + expect(livepeerConfig.model[ModelClass.IMAGE]?.name).toBe("ByteDance/SDXL-Lightning"); + expect(getModelSettings(ModelProviderName.LIVEPEER, ModelClass.SMALL)?.temperature).toBe(0); }); test("should use default image model", () => { delete process.env.IMAGE_LIVEPEER_MODEL; - expect(models[ModelProviderName.LIVEPEER].model[ModelClass.IMAGE]).toBe("ByteDance/SDXL-Lightning"); + expect(getImageModelSettings(ModelProviderName.LIVEPEER)?.name).toBe("ByteDance/SDXL-Lightning"); }); }); diff --git a/packages/core/__tests__/parsing.test.ts b/packages/core/__tests__/parsing.test.ts index 1aeac9779e7..e94414c879d 100644 --- a/packages/core/__tests__/parsing.test.ts +++ b/packages/core/__tests__/parsing.test.ts @@ -113,7 +113,7 @@ describe("Parsing Module", () => { const input = '```json\n{"key": "value", "number": 42}\n```'; expect(parseJSONObjectFromText(input)).toEqual({ key: "value", - number: 42, + number: "42", }); }); @@ -121,7 +121,7 @@ describe("Parsing Module", () => { const input = '{"key": "value", "number": 42}'; expect(parseJSONObjectFromText(input)).toEqual({ key: "value", - number: 42, + number: "42", }); }); diff --git a/packages/core/package.json b/packages/core/package.json index 9f144966006..846dc907950 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -91,5 +91,8 @@ "together-ai": "0.7.0", "unique-names-generator": "4.7.1", "uuid": "11.0.3" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/core/src/environment.ts b/packages/core/src/environment.ts index 9d51e0f4e68..dff7e50e8a1 100644 --- a/packages/core/src/environment.ts +++ b/packages/core/src/environment.ts @@ -106,6 +106,14 @@ export const CharacterSchema = z.object({ }) .optional(), model: z.string().optional(), + modelConfig: z.object({ + maxInputTokens: z.number().optional(), + maxOutputTokens: z.number().optional(), + temperature: z.number().optional(), + frequency_penalty: z.number().optional(), + presence_penalty:z.number().optional() + }) + .optional(), embeddingModel: z.string().optional(), }) .optional(), diff --git a/packages/core/src/generation.ts b/packages/core/src/generation.ts index 6adaf9b7232..f15f5e26a33 100644 --- a/packages/core/src/generation.ts +++ b/packages/core/src/generation.ts @@ -502,7 +502,7 @@ export async function generateText({ const max_context_length = modelConfiguration?.maxInputTokens || modelSettings.maxInputTokens; const max_response_length = - modelConfiguration?.max_response_length || + modelConfiguration?.maxOutputTokens || modelSettings.maxOutputTokens; const experimental_telemetry = modelConfiguration?.experimental_telemetry || @@ -2358,14 +2358,14 @@ async function handleGroq({ */ async function handleGoogle({ model, - apiKey: _apiKey, + apiKey, schema, schemaName, schemaDescription, mode = "json", modelOptions, }: ProviderOptions): Promise> { - const google = createGoogleGenerativeAI(); + const google = createGoogleGenerativeAI({apiKey}); return await aiGenerateObject({ model: google(model), schema, diff --git a/packages/core/src/models.ts b/packages/core/src/models.ts index 76a6838d1ba..3695c964b96 100644 --- a/packages/core/src/models.ts +++ b/packages/core/src/models.ts @@ -987,7 +987,7 @@ export const models: Models = { }, }, [ModelProviderName.LIVEPEER]: { - endpoint: settings.LIVEPEER_GATEWAY_URL, + endpoint: settings.LIVEPEER_GATEWAY_URL || "http://gateway.test-gateway", model: { [ModelClass.SMALL]: { name: diff --git a/packages/core/src/parsing.ts b/packages/core/src/parsing.ts index fadebbab929..f7393875e28 100644 --- a/packages/core/src/parsing.ts +++ b/packages/core/src/parsing.ts @@ -146,6 +146,7 @@ export function parseJSONObjectFromText( const jsonBlockMatch = text.match(jsonBlockPattern); if (jsonBlockMatch) { + text = cleanJsonResponse(text); const parsingText = normalizeJsonString(text); try { jsonData = JSON.parse(parsingText); @@ -159,6 +160,7 @@ export function parseJSONObjectFromText( const objectMatch = text.match(objectPattern); if (objectMatch) { + text = cleanJsonResponse(text); const parsingText = normalizeJsonString(text); try { jsonData = JSON.parse(parsingText); @@ -214,7 +216,7 @@ export function extractAttributes( }); } - return attributes; + return Object.entries(attributes).length > 0 ? attributes : null; } /** diff --git a/packages/core/src/types.ts b/packages/core/src/types.ts index ee9687ee4c8..4b40244193f 100644 --- a/packages/core/src/types.ts +++ b/packages/core/src/types.ts @@ -696,7 +696,7 @@ export type TelemetrySettings = { export interface ModelConfiguration { temperature?: number; - max_response_length?: number; + maxOutputTokens?: number; frequency_penalty?: number; presence_penalty?: number; maxInputTokens?: number; diff --git a/packages/plugin-0g/package.json b/packages/plugin-0g/package.json index 0cec4a2d666..3741a9a5336 100644 --- a/packages/plugin-0g/package.json +++ b/packages/plugin-0g/package.json @@ -36,5 +36,8 @@ "lint:fix": "biome check --apply src/", "format": "biome format src/", "format:fix": "biome format --write src/" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-0x/package.json b/packages/plugin-0x/package.json index 2312c4b3290..5c37c7d6884 100644 --- a/packages/plugin-0x/package.json +++ b/packages/plugin-0x/package.json @@ -40,5 +40,8 @@ "peerDependencies": { "@elizaos/core": "workspace:*", "zod": "^3.22.4" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-3d-generation/package.json b/packages/plugin-3d-generation/package.json index 86bcfc2c478..e160e686be2 100644 --- a/packages/plugin-3d-generation/package.json +++ b/packages/plugin-3d-generation/package.json @@ -38,5 +38,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-abstract/package.json b/packages/plugin-abstract/package.json index 7c97d1c7de4..30da4c11ba5 100644 --- a/packages/plugin-abstract/package.json +++ b/packages/plugin-abstract/package.json @@ -43,5 +43,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-agentkit/package.json b/packages/plugin-agentkit/package.json index 041c37f853e..fc167e39750 100644 --- a/packages/plugin-agentkit/package.json +++ b/packages/plugin-agentkit/package.json @@ -25,5 +25,8 @@ "lint:fix": "biome check --apply .", "format": "biome format .", "format:fix": "biome format --write ." + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-akash/package.json b/packages/plugin-akash/package.json index b6aade4973d..f53b04302f6 100644 --- a/packages/plugin-akash/package.json +++ b/packages/plugin-akash/package.json @@ -49,5 +49,8 @@ }, "peerDependencies": { "@elizaos/core": "workspace:*" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-allora/package.json b/packages/plugin-allora/package.json index 47e4df5023d..2d2cb131422 100644 --- a/packages/plugin-allora/package.json +++ b/packages/plugin-allora/package.json @@ -26,5 +26,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-ankr/package.json b/packages/plugin-ankr/package.json index 3668bd245df..0d67786106e 100644 --- a/packages/plugin-ankr/package.json +++ b/packages/plugin-ankr/package.json @@ -51,5 +51,8 @@ }, "engines": { "node": ">=18.0.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-anyone/package.json b/packages/plugin-anyone/package.json index d8ee7cb8747..f193b8d947c 100644 --- a/packages/plugin-anyone/package.json +++ b/packages/plugin-anyone/package.json @@ -28,5 +28,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-apro/package.json b/packages/plugin-apro/package.json index 016ded02009..245f805d84b 100644 --- a/packages/plugin-apro/package.json +++ b/packages/plugin-apro/package.json @@ -38,5 +38,8 @@ "@biomejs/biome": "1.9.4", "tsup": "8.3.5", "vitest": "2.1.9" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-aptos/package.json b/packages/plugin-aptos/package.json index 190bb466721..a6dcd13f2da 100644 --- a/packages/plugin-aptos/package.json +++ b/packages/plugin-aptos/package.json @@ -41,5 +41,8 @@ "peerDependencies": { "form-data": "4.0.1", "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-arbitrage/package.json b/packages/plugin-arbitrage/package.json index dbbd2bcf567..99ea64a678c 100644 --- a/packages/plugin-arbitrage/package.json +++ b/packages/plugin-arbitrage/package.json @@ -50,5 +50,8 @@ }, "peerDependencies": { "@elizaos/core": "workspace:*" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-arthera/package.json b/packages/plugin-arthera/package.json index 7287d2d37b3..49ed63029a5 100644 --- a/packages/plugin-arthera/package.json +++ b/packages/plugin-arthera/package.json @@ -24,5 +24,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-asterai/package.json b/packages/plugin-asterai/package.json index 0343334ab58..a04e420eea8 100644 --- a/packages/plugin-asterai/package.json +++ b/packages/plugin-asterai/package.json @@ -48,5 +48,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-autonome/package.json b/packages/plugin-autonome/package.json index 5f7d8180f76..1a799d2a1a2 100644 --- a/packages/plugin-autonome/package.json +++ b/packages/plugin-autonome/package.json @@ -26,5 +26,8 @@ "peerDependencies": { "form-data": "4.0.1", "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-avail/package.json b/packages/plugin-avail/package.json index 6800c4a0c01..d2f4c853290 100644 --- a/packages/plugin-avail/package.json +++ b/packages/plugin-avail/package.json @@ -27,5 +27,8 @@ "lint:fix": "biome check --apply .", "format": "biome format .", "format:fix": "biome format --write ." + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-avalanche/package.json b/packages/plugin-avalanche/package.json index cf3ea465f7d..9835938cc6d 100644 --- a/packages/plugin-avalanche/package.json +++ b/packages/plugin-avalanche/package.json @@ -36,5 +36,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-b2/package.json b/packages/plugin-b2/package.json index fd4f0b9495f..89a7719222c 100644 --- a/packages/plugin-b2/package.json +++ b/packages/plugin-b2/package.json @@ -36,5 +36,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-binance/package.json b/packages/plugin-binance/package.json index e40f1a5a89a..76950ff4716 100644 --- a/packages/plugin-binance/package.json +++ b/packages/plugin-binance/package.json @@ -33,5 +33,8 @@ "dev": "tsup --format esm --dts --watch", "test": "vitest run", "test:watch": "vitest" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-birdeye/package.json b/packages/plugin-birdeye/package.json index da34c8ed207..db2583a42fc 100644 --- a/packages/plugin-birdeye/package.json +++ b/packages/plugin-birdeye/package.json @@ -36,5 +36,8 @@ "peerDependencies": { "form-data": "4.0.1", "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-bittensor/package.json b/packages/plugin-bittensor/package.json index 09fb8852b10..22ad8ab6c07 100644 --- a/packages/plugin-bittensor/package.json +++ b/packages/plugin-bittensor/package.json @@ -34,5 +34,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-bnb/package.json b/packages/plugin-bnb/package.json index efe33b2b7e5..089d861b148 100644 --- a/packages/plugin-bnb/package.json +++ b/packages/plugin-bnb/package.json @@ -32,5 +32,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-bootstrap/package.json b/packages/plugin-bootstrap/package.json index a6ba30f04ff..0a9c36ff862 100644 --- a/packages/plugin-bootstrap/package.json +++ b/packages/plugin-bootstrap/package.json @@ -29,5 +29,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-chainbase/package.json b/packages/plugin-chainbase/package.json index 513c70dcccb..2d86f1781b5 100644 --- a/packages/plugin-chainbase/package.json +++ b/packages/plugin-chainbase/package.json @@ -20,5 +20,8 @@ "lint:fix": "biome check --apply .", "format": "biome format .", "format:fix": "biome format --write ." + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-coinbase/package.json b/packages/plugin-coinbase/package.json index b89ee23c61c..dc5976d6086 100644 --- a/packages/plugin-coinbase/package.json +++ b/packages/plugin-coinbase/package.json @@ -36,5 +36,8 @@ "dev": "tsup --format esm --dts --watch", "test": "vitest run", "test:watch": "vitest" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-coingecko/package.json b/packages/plugin-coingecko/package.json index aeef5225d78..5a984834eb1 100644 --- a/packages/plugin-coingecko/package.json +++ b/packages/plugin-coingecko/package.json @@ -25,5 +25,8 @@ "lint:fix": "biome check --apply .", "format": "biome format .", "format:fix": "biome format --write ." + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-coinmarketcap/package.json b/packages/plugin-coinmarketcap/package.json index 44a039cbfa5..8bd215b3da0 100644 --- a/packages/plugin-coinmarketcap/package.json +++ b/packages/plugin-coinmarketcap/package.json @@ -23,5 +23,8 @@ "test": "vitest run", "test:watch": "vitest", "test:coverage": "vitest run --coverage" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-conflux/package.json b/packages/plugin-conflux/package.json index 763fe97c2ea..38dd3b27588 100644 --- a/packages/plugin-conflux/package.json +++ b/packages/plugin-conflux/package.json @@ -35,5 +35,8 @@ "format": "biome format .", "format:fix": "biome format --write .", "test": "vitest run" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-cosmos/package.json b/packages/plugin-cosmos/package.json index a62520f8db5..a3447e1574a 100644 --- a/packages/plugin-cosmos/package.json +++ b/packages/plugin-cosmos/package.json @@ -30,5 +30,8 @@ "devDependencies": { "@biomejs/biome": "1.9.4", "@chain-registry/types": "^0.50.44" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-cronos/package.json b/packages/plugin-cronos/package.json index e93273a0101..2f8745bdbb0 100644 --- a/packages/plugin-cronos/package.json +++ b/packages/plugin-cronos/package.json @@ -38,5 +38,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-cronoszkevm/package.json b/packages/plugin-cronoszkevm/package.json index c7c29b26595..cec8a4c6698 100644 --- a/packages/plugin-cronoszkevm/package.json +++ b/packages/plugin-cronoszkevm/package.json @@ -36,5 +36,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-dcap/package.json b/packages/plugin-dcap/package.json index cff3ec40899..53930ee2094 100644 --- a/packages/plugin-dcap/package.json +++ b/packages/plugin-dcap/package.json @@ -24,5 +24,8 @@ "lint:fix": "biome check --apply .", "format": "biome format .", "format:fix": "biome format --write ." + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-depin/package.json b/packages/plugin-depin/package.json index 4858aacb479..6a5fde5ece3 100644 --- a/packages/plugin-depin/package.json +++ b/packages/plugin-depin/package.json @@ -24,5 +24,8 @@ }, "devDependencies": { "@biomejs/biome": "1.9.4" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-desk-exchange/package.json b/packages/plugin-desk-exchange/package.json index 4351fda5b61..4905b33c630 100644 --- a/packages/plugin-desk-exchange/package.json +++ b/packages/plugin-desk-exchange/package.json @@ -16,5 +16,8 @@ "scripts": { "build": "tsup --format esm --dts", "dev": "tsup --format esm --dts --watch" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-devin/package.json b/packages/plugin-devin/package.json index a55bec6d553..577f905741c 100644 --- a/packages/plugin-devin/package.json +++ b/packages/plugin-devin/package.json @@ -36,5 +36,8 @@ "lint:fix": "biome check --apply .", "format": "biome format .", "format:fix": "biome format --write ." + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-dexscreener/package.json b/packages/plugin-dexscreener/package.json index 10ee74aa36d..438f63fb1ef 100644 --- a/packages/plugin-dexscreener/package.json +++ b/packages/plugin-dexscreener/package.json @@ -22,5 +22,8 @@ }, "devDependencies": { "@biomejs/biome": "1.9.4" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-di/package.json b/packages/plugin-di/package.json index 4335eda6ab5..6adbfe570df 100644 --- a/packages/plugin-di/package.json +++ b/packages/plugin-di/package.json @@ -40,5 +40,8 @@ "format": "biome format .", "format:fix": "biome format --write .", "test": "vitest run" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-dkg/package.json b/packages/plugin-dkg/package.json index 9fe927ccbfb..f5632cf22f9 100644 --- a/packages/plugin-dkg/package.json +++ b/packages/plugin-dkg/package.json @@ -38,5 +38,8 @@ "devDependencies": { "@biomejs/biome": "1.9.4", "typescript": "4.9" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-echochambers/package.json b/packages/plugin-echochambers/package.json index 44b586f82f8..84b76c9b010 100644 --- a/packages/plugin-echochambers/package.json +++ b/packages/plugin-echochambers/package.json @@ -33,5 +33,8 @@ }, "devDependencies": { "@biomejs/biome": "1.9.4" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-edwin/package.json b/packages/plugin-edwin/package.json index 6f3b470897d..907622a59cd 100644 --- a/packages/plugin-edwin/package.json +++ b/packages/plugin-edwin/package.json @@ -13,5 +13,8 @@ "scripts": { "build": "tsup --format esm --dts", "dev": "tsup --format esm --dts --watch" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-email-automation/package.json b/packages/plugin-email-automation/package.json index 303b919483e..232a69a11e5 100644 --- a/packages/plugin-email-automation/package.json +++ b/packages/plugin-email-automation/package.json @@ -57,5 +57,8 @@ "json", "node" ] + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-email/package.json b/packages/plugin-email/package.json index f8503b7c5b6..cd2343dade7 100644 --- a/packages/plugin-email/package.json +++ b/packages/plugin-email/package.json @@ -40,5 +40,8 @@ "ts-jest": "^29.2.5", "ts-jest-mock-import-meta": "^1.2.1", "typescript": "^5.0.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-ethstorage/package.json b/packages/plugin-ethstorage/package.json index b6b729b88c3..55992d854b3 100644 --- a/packages/plugin-ethstorage/package.json +++ b/packages/plugin-ethstorage/package.json @@ -1,25 +1,29 @@ { - "name": "@elizaos/plugin-ethstorage", - "main": "dist/index.js", - "type": "module", - "types": "dist/index.d.ts", - "dependencies": { - "@elizaos/core": "workspace:*", - "@elizaos/plugin-trustdb": "workspace:*", - "ethers": "^6.13.5", - "kzg-wasm": "^0.4.0" - }, - "devDependencies": { - "@biomejs/biome": "1.9.4", - "@types/node": "^20.0.0", - "tsup": "8.3.5" - }, - "scripts": { - "build": "tsup --format esm --dts", - "dev": "tsup --format esm --dts --watch", - "lint": "biome lint .", - "lint:fix": "biome check --apply .", - "format": "biome format .", - "format:fix": "biome format --write ." - } + "name": "@elizaos/plugin-ethstorage", + "version": "0.25.6-alpha.1", + "main": "dist/index.js", + "type": "module", + "types": "dist/index.d.ts", + "dependencies": { + "@elizaos/core": "workspace:*", + "@elizaos/plugin-trustdb": "workspace:*", + "ethers": "^6.13.5", + "kzg-wasm": "^0.4.0" + }, + "devDependencies": { + "@biomejs/biome": "1.9.4", + "@types/node": "^20.0.0", + "tsup": "8.3.5" + }, + "scripts": { + "build": "tsup --format esm --dts", + "dev": "tsup --format esm --dts --watch", + "lint": "biome lint .", + "lint:fix": "biome check --apply .", + "format": "biome format .", + "format:fix": "biome format --write ." + }, + "publishConfig": { + "access": "public" + } } diff --git a/packages/plugin-evm/package.json b/packages/plugin-evm/package.json index ad6f997f643..09421efd062 100644 --- a/packages/plugin-evm/package.json +++ b/packages/plugin-evm/package.json @@ -40,5 +40,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-ferePro/README.md b/packages/plugin-ferePro/README.md deleted file mode 100644 index e80265c0370..00000000000 --- a/packages/plugin-ferePro/README.md +++ /dev/null @@ -1,238 +0,0 @@ -# @elizaos/plugin-ferepro - -A plugin for enabling WebSocket communication with FerePro API to provide AI-driven market insights within the ElizaOS ecosystem. - -## Description - -The FerePro plugin enables real-time communication with the FerePro API through WebSocket connections, providing market analysis, cryptocurrency comparisons, and financial insights. - -## Features - -- Real-time WebSocket communication -- Streaming and non-streaming response support -- Market data analysis and comparisons -- Cryptocurrency insights -- Debug mode for detailed responses -- Automatic connection management -- Comprehensive error handling -- Credit tracking and management - -## Installation - -```bash -pnpm install @elizaos/plugin-ferepro -``` - -## Configuration - -### Required Environment Variables - -```env -# Required -FERE_USER_ID=your-user-id-here # Default: 1a5b4a29-9d95-44c8-aef3-05a8e515f43e -``` - -## Usage - -### Basic Message Structure - -```typescript -{ - "message": "Your market query here", - "stream": boolean, // Optional: Enable streaming responses - "debug": boolean // Optional: Enable debug mode -} -``` - -### Example Queries - -1. Basic Market Query: - -```typescript -// Get top cryptocurrencies -"What are the top 5 cryptocurrencies?"; -``` - -2. Comparison Analysis: - -```typescript -// Compare specific cryptocurrencies -"Compare Ethereum and Bitcoin for the past 6 months"; -``` - -3. Historical Data: - -```typescript -// Get historical performance -"Compare top 3 coins against Bitcoin in the last 3 months"; -``` - -## Development - -1. Clone the repository -2. Install dependencies: - -```bash -pnpm install -``` - -3. Build the plugin: - -```bash -pnpm run build -``` - -4. Run in development mode: - -```bash -pnpm run dev -``` - -## API Reference - -### Core Components - -1. **FereProService** - - - Manages WebSocket connections - - Handles message sending/receiving - - Processes streaming responses - - Tracks credits and usage - -2. **Actions** - - SEND_FEREPRO_MESSAGE: Primary action for API communication - - Supports market queries and analysis requests - - Handles both streaming and non-streaming responses - -### Response Structure - -```typescript -interface ChatResponse { - answer: string; - chat_id: string; - representation?: Record[]; - agent_api_name: string; - query_summary: string; - agent_credits: number; - credits_available: number; -} -``` - -## Error Handling - -The plugin includes comprehensive error handling for: - -- WebSocket connection issues -- Invalid message formats -- API response errors -- Credit limitation issues - -## Common Issues & Troubleshooting - -### Connection Issues - -1. **WebSocket Connection Failures** - - - Verify your internet connection - - Check if the FerePro API service is available - - Ensure your FERE_USER_ID is valid and active - -2. **Message Timeout** - - - The connection might time out for long-running queries - - Consider using streaming mode for large data requests - - Implement retry logic for important queries - -3. **Credit Depletion** - - Monitor credits_available in responses - - Set up alerts for low credit situations - - Contact FerePro support for credit top-up - -### Response Parsing - -1. **Invalid Response Format** - - - Check if the query is properly formatted - - Verify the message structure matches the API requirements - - Enable debug mode for detailed error information - -2. **Missing Data** - - Ensure the requested timeframe is valid - - Verify the cryptocurrencies exist in the database - - Check if you have access to the requested data tier - -## Safety & Best Practices - -### Security - -1. **API Credentials** - - - Never expose your FERE_USER_ID in public repositories - - Use environment variables for sensitive data - - Rotate credentials periodically if possible - -2. **Rate Limiting** - - Implement appropriate delays between requests - - Monitor credit usage to prevent unexpected depletion - - Cache responses when appropriate - -### Data Handling - -1. **Response Validation** - - - Always validate response data before processing - - Implement proper error handling for malformed data - - Log unexpected response formats for debugging - -2. **Stream Management** - - Close WebSocket connections properly after use - - Implement reconnection logic for dropped connections - - Handle partial responses in streaming mode - -### Best Practices - -1. **Query Optimization** - - - Keep queries focused and specific - - Use streaming for large data requests - - Implement caching for frequently requested data - -2. **Error Handling** - - - Implement comprehensive error catching - - Log errors with appropriate context - - Provide meaningful error messages to users - -3. **Resource Management** - - Monitor WebSocket connection status - - Implement connection pooling for high-volume usage - - Clean up resources properly on service shutdown - -## Contributing - -Contributions are welcome! Please see the [CONTRIBUTING.md](CONTRIBUTING.md) file for more information. - -## Credits - -This plugin integrates with and builds upon several key technologies: - -- [IPFS](https://ipfs.tech/): InterPlanetary File System -- [Filecoin](https://filecoin.io/): Decentralized storage network -- [Web3.Storage](https://web3.storage/): Decentralized storage service - -Special thanks to: - -- The Protocol Labs team for IPFS and Filecoin -- The Web3.Storage team -- The decentralized storage community -- The Eliza community for their contributions and feedback - -For more information about Ferepro capabilities: - -- [IPFS Documentation](https://docs.ipfs.tech/) -- [Filecoin Documentation](https://docs.filecoin.io/) -- [Web3.Storage Documentation](https://web3.storage/docs/) - -## License - -This plugin is part of the Eliza project. See the main project repository for license information. diff --git a/packages/plugin-flow/package.json b/packages/plugin-flow/package.json index a219b5bfbdc..0133518abfc 100644 --- a/packages/plugin-flow/package.json +++ b/packages/plugin-flow/package.json @@ -49,5 +49,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-football/package.json b/packages/plugin-football/package.json index f4a1f21d4bb..3ec4609380d 100644 --- a/packages/plugin-football/package.json +++ b/packages/plugin-football/package.json @@ -35,5 +35,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-form/package.json b/packages/plugin-form/package.json index e09631abf6e..f626463c73a 100644 --- a/packages/plugin-form/package.json +++ b/packages/plugin-form/package.json @@ -35,5 +35,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-fuel/package.json b/packages/plugin-fuel/package.json index 5bef6e459be..915a262817f 100644 --- a/packages/plugin-fuel/package.json +++ b/packages/plugin-fuel/package.json @@ -39,5 +39,8 @@ "peerDependencies": { "form-data": "4.0.1", "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-gelato/package.json b/packages/plugin-gelato/package.json index 6f8ad1a008c..609a2b7f283 100644 --- a/packages/plugin-gelato/package.json +++ b/packages/plugin-gelato/package.json @@ -36,5 +36,8 @@ "lint:fix": "biome check --apply .", "format": "biome format .", "format:fix": "biome format --write ." + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-genlayer/package.json b/packages/plugin-genlayer/package.json index e3aab587fe2..0d6a7c381b7 100644 --- a/packages/plugin-genlayer/package.json +++ b/packages/plugin-genlayer/package.json @@ -20,5 +20,8 @@ }, "devDependencies": { "@biomejs/biome": "1.9.4" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-giphy/package.json b/packages/plugin-giphy/package.json index 5fe6aa42b53..6964f15e830 100644 --- a/packages/plugin-giphy/package.json +++ b/packages/plugin-giphy/package.json @@ -20,5 +20,8 @@ "lint:fix": "biome check --apply .", "format": "biome format .", "format:fix": "biome format --write ." + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-gitbook/package.json b/packages/plugin-gitbook/package.json index e3b1e264777..32ee9a97311 100644 --- a/packages/plugin-gitbook/package.json +++ b/packages/plugin-gitbook/package.json @@ -33,5 +33,8 @@ "lint:fix": "biome check --apply .", "format": "biome format .", "format:fix": "biome format --write ." + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-gitcoin-passport/package.json b/packages/plugin-gitcoin-passport/package.json index 4d866b74cd3..fe7dce5243c 100644 --- a/packages/plugin-gitcoin-passport/package.json +++ b/packages/plugin-gitcoin-passport/package.json @@ -22,5 +22,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-goat/package.json b/packages/plugin-goat/package.json index 8fe0e92e520..363d3d3b813 100644 --- a/packages/plugin-goat/package.json +++ b/packages/plugin-goat/package.json @@ -41,5 +41,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-goplus/package.json b/packages/plugin-goplus/package.json index 9dee5b414c4..b89f95c2990 100644 --- a/packages/plugin-goplus/package.json +++ b/packages/plugin-goplus/package.json @@ -16,5 +16,8 @@ "devDependencies": { "@types/ws": "^8.5.13", "tsx": "^4.19.2" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-holdstation/package.json b/packages/plugin-holdstation/package.json index fc43f4d321b..7b9a4ac5b78 100644 --- a/packages/plugin-holdstation/package.json +++ b/packages/plugin-holdstation/package.json @@ -32,5 +32,8 @@ }, "devDependencies": { "ts-node": "^10.9.2" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-hyperbolic/package.json b/packages/plugin-hyperbolic/package.json index 28efd767833..2ef290f8ad5 100644 --- a/packages/plugin-hyperbolic/package.json +++ b/packages/plugin-hyperbolic/package.json @@ -51,5 +51,8 @@ }, "engines": { "node": ">=18.0.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-hyperliquid/package.json b/packages/plugin-hyperliquid/package.json index 8b6940d7db9..72d2091f7e7 100644 --- a/packages/plugin-hyperliquid/package.json +++ b/packages/plugin-hyperliquid/package.json @@ -15,5 +15,8 @@ "scripts": { "build": "tsup --format esm --dts", "dev": "tsup --format esm --dts --watch" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-icp/package.json b/packages/plugin-icp/package.json index 3b202d86213..7803ac8577a 100644 --- a/packages/plugin-icp/package.json +++ b/packages/plugin-icp/package.json @@ -35,5 +35,8 @@ "jest": "29.7.0", "tsup": "8.3.5", "typescript": "5.6.3" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-image-generation/package.json b/packages/plugin-image-generation/package.json index cefa3bf997f..ba57003dd03 100644 --- a/packages/plugin-image-generation/package.json +++ b/packages/plugin-image-generation/package.json @@ -28,5 +28,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-imgflip/package.json b/packages/plugin-imgflip/package.json index c568637a064..56f40ca7ff4 100644 --- a/packages/plugin-imgflip/package.json +++ b/packages/plugin-imgflip/package.json @@ -29,5 +29,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-initia/package.json b/packages/plugin-initia/package.json index bf0dc52a2ac..11bef376443 100644 --- a/packages/plugin-initia/package.json +++ b/packages/plugin-initia/package.json @@ -34,5 +34,8 @@ }, "devDependencies": { "@types/node": "^22.10.1" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-injective/package.json b/packages/plugin-injective/package.json index a69e73b5353..36108ccc855 100644 --- a/packages/plugin-injective/package.json +++ b/packages/plugin-injective/package.json @@ -46,5 +46,8 @@ "@elizaos/adapter-sqlite": "0.1.7-alpha.2", "@elizaos/core": "workspace:*", "injective-sdk-client-ts": "file:../../packages/plugin-injective/injective-sdk-client-ts" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-intiface/package.json b/packages/plugin-intiface/package.json index 5bad39782f6..7e6bc595750 100644 --- a/packages/plugin-intiface/package.json +++ b/packages/plugin-intiface/package.json @@ -32,5 +32,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-iq6900/package.json b/packages/plugin-iq6900/package.json index 83b778dede1..8a3e31b59c4 100644 --- a/packages/plugin-iq6900/package.json +++ b/packages/plugin-iq6900/package.json @@ -15,5 +15,8 @@ "scripts": { "build": "tsup --format esm --dts", "dev": "tsup --format esm --dts --watch" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-irys/package.json b/packages/plugin-irys/package.json index 9d8b2d08894..cac7fb35a31 100644 --- a/packages/plugin-irys/package.json +++ b/packages/plugin-irys/package.json @@ -18,5 +18,8 @@ "build": "tsup --format esm --dts", "dev": "tsup --format esm --dts --watch", "test": "vitest run" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-lens-network/package.json b/packages/plugin-lens-network/package.json index 33080e08a24..61a0423ac6f 100644 --- a/packages/plugin-lens-network/package.json +++ b/packages/plugin-lens-network/package.json @@ -33,5 +33,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-letzai/package.json b/packages/plugin-letzai/package.json index 854d43efd40..0eb334aa343 100644 --- a/packages/plugin-letzai/package.json +++ b/packages/plugin-letzai/package.json @@ -13,5 +13,8 @@ "scripts": { "build": "tsup --format esm --dts", "dev": "tsup --format esm --dts --watch" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-lightning/package.json b/packages/plugin-lightning/package.json index 6311e547771..9fb6888952c 100644 --- a/packages/plugin-lightning/package.json +++ b/packages/plugin-lightning/package.json @@ -33,5 +33,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-lit/package.json b/packages/plugin-lit/package.json index e552959b700..830b7499a01 100644 --- a/packages/plugin-lit/package.json +++ b/packages/plugin-lit/package.json @@ -55,5 +55,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-massa/package.json b/packages/plugin-massa/package.json index 03b044268fd..c4f4cc05755 100644 --- a/packages/plugin-massa/package.json +++ b/packages/plugin-massa/package.json @@ -14,5 +14,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-mina/package.json b/packages/plugin-mina/package.json index 5b377368096..8531d1ce5e5 100644 --- a/packages/plugin-mina/package.json +++ b/packages/plugin-mina/package.json @@ -33,5 +33,8 @@ "peerDependencies": { "form-data": "4.0.1", "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-mind-network/package.json b/packages/plugin-mind-network/package.json index b0e282a49ba..cfce4e61fb5 100644 --- a/packages/plugin-mind-network/package.json +++ b/packages/plugin-mind-network/package.json @@ -27,5 +27,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-moralis/package.json b/packages/plugin-moralis/package.json index cfa0e634cc9..15f2cedd189 100644 --- a/packages/plugin-moralis/package.json +++ b/packages/plugin-moralis/package.json @@ -30,5 +30,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-movement/package.json b/packages/plugin-movement/package.json index fc9b9a8fd48..3d19dc94e14 100644 --- a/packages/plugin-movement/package.json +++ b/packages/plugin-movement/package.json @@ -25,5 +25,8 @@ "peerDependencies": { "form-data": "4.0.1", "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-multiversx/package.json b/packages/plugin-multiversx/package.json index 27de49fbb25..f0ef1fd27de 100644 --- a/packages/plugin-multiversx/package.json +++ b/packages/plugin-multiversx/package.json @@ -37,5 +37,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-near/package.json b/packages/plugin-near/package.json index 5090b6acab7..a250a608b2b 100644 --- a/packages/plugin-near/package.json +++ b/packages/plugin-near/package.json @@ -34,5 +34,8 @@ "peerDependencies": { "form-data": "4.0.1", "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-news/package.json b/packages/plugin-news/package.json index e1521f75708..6eb9660f42e 100644 --- a/packages/plugin-news/package.json +++ b/packages/plugin-news/package.json @@ -15,5 +15,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-nft-collections/package.json b/packages/plugin-nft-collections/package.json index 6f7db649028..2bbbf234346 100644 --- a/packages/plugin-nft-collections/package.json +++ b/packages/plugin-nft-collections/package.json @@ -29,5 +29,8 @@ }, "peerDependencies": { "@elizaos/core": "workspace:*" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-nft-generation/package.json b/packages/plugin-nft-generation/package.json index a8536b82f4a..cf94e980d59 100644 --- a/packages/plugin-nft-generation/package.json +++ b/packages/plugin-nft-generation/package.json @@ -43,5 +43,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-node/package.json b/packages/plugin-node/package.json index f286099d38f..25f47b8e0b7 100644 --- a/packages/plugin-node/package.json +++ b/packages/plugin-node/package.json @@ -94,5 +94,8 @@ "trustedDependencies": { "onnxruntime-node": "1.20.1", "sharp": "0.33.5" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-nvidia-nim/package.json b/packages/plugin-nvidia-nim/package.json index 9cbb861e0f0..4fa8105f3bd 100644 --- a/packages/plugin-nvidia-nim/package.json +++ b/packages/plugin-nvidia-nim/package.json @@ -46,5 +46,8 @@ "ai" ], "author": "Eliza Team", - "license": "MIT" + "license": "MIT", + "publishConfig": { + "access": "public" + } } diff --git a/packages/plugin-obsidian/package.json b/packages/plugin-obsidian/package.json index cbc608d4843..8e0b0ecf7fc 100644 --- a/packages/plugin-obsidian/package.json +++ b/packages/plugin-obsidian/package.json @@ -18,5 +18,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-omniflix/package.json b/packages/plugin-omniflix/package.json index 230a5982c51..32d925363ad 100644 --- a/packages/plugin-omniflix/package.json +++ b/packages/plugin-omniflix/package.json @@ -28,5 +28,8 @@ "peerDependencies": { "form-data": "4.0.1", "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-opacity/package.json b/packages/plugin-opacity/package.json index f36305385ed..7c2594d959a 100644 --- a/packages/plugin-opacity/package.json +++ b/packages/plugin-opacity/package.json @@ -16,5 +16,8 @@ }, "devDependencies": { "tsup": "^8.3.5" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-open-weather/package.json b/packages/plugin-open-weather/package.json index 122bf8deecf..b63ce815555 100644 --- a/packages/plugin-open-weather/package.json +++ b/packages/plugin-open-weather/package.json @@ -28,5 +28,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-openai/package.json b/packages/plugin-openai/package.json index c0e13f1c74a..233399b67a0 100644 --- a/packages/plugin-openai/package.json +++ b/packages/plugin-openai/package.json @@ -29,5 +29,8 @@ "scripts": { "build": "tsup src/index.ts --format esm --dts --tsconfig ./tsconfig.json", "dev": "tsup src/index.ts --format esm --dts --watch --tsconfig ./tsconfig.json" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-primus/package.json b/packages/plugin-primus/package.json index d6b78e2c543..59266cc59c0 100644 --- a/packages/plugin-primus/package.json +++ b/packages/plugin-primus/package.json @@ -29,5 +29,8 @@ "dev": "tsup --format esm --dts --watch", "test": "vitest run", "lint": "eslint --fix --cache ." + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-pyth-data/package.json b/packages/plugin-pyth-data/package.json index 522731cf4e5..661360a680f 100644 --- a/packages/plugin-pyth-data/package.json +++ b/packages/plugin-pyth-data/package.json @@ -53,5 +53,8 @@ "price-feed" ], "author": "Eliza Team", - "license": "MIT" + "license": "MIT", + "publishConfig": { + "access": "public" + } } diff --git a/packages/plugin-quai/package.json b/packages/plugin-quai/package.json index ffc8ca418ab..0d676a0ef2d 100644 --- a/packages/plugin-quai/package.json +++ b/packages/plugin-quai/package.json @@ -19,5 +19,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-quick-intel/package.json b/packages/plugin-quick-intel/package.json index d1fab016328..48158e8c676 100644 --- a/packages/plugin-quick-intel/package.json +++ b/packages/plugin-quick-intel/package.json @@ -22,5 +22,8 @@ "dev": "tsup --format esm --dts --watch", "test": "vitest", "lint": "eslint --fix --cache ." + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-rabbi-trader/package.json b/packages/plugin-rabbi-trader/package.json index 9b5e0aad1fa..e237b2d8cd3 100644 --- a/packages/plugin-rabbi-trader/package.json +++ b/packages/plugin-rabbi-trader/package.json @@ -34,5 +34,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-router-nitro/package.json b/packages/plugin-router-nitro/package.json index 651b355abea..48118cddf75 100644 --- a/packages/plugin-router-nitro/package.json +++ b/packages/plugin-router-nitro/package.json @@ -31,5 +31,8 @@ "test": "vitest run", "test:watch": "vitest", "lint": "eslint --fix --cache ." + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-sei/package.json b/packages/plugin-sei/package.json index d2317e73339..65153212b05 100644 --- a/packages/plugin-sei/package.json +++ b/packages/plugin-sei/package.json @@ -32,5 +32,8 @@ "peerDependencies": { "form-data": "4.0.1", "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-sgx/package.json b/packages/plugin-sgx/package.json index 8d956c9ed3d..c927207ea01 100644 --- a/packages/plugin-sgx/package.json +++ b/packages/plugin-sgx/package.json @@ -19,5 +19,8 @@ "lint:fix": "biome check --apply src/", "format": "biome format src/", "format:fix": "biome format --write src/" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-solana-agent-kit/package.json b/packages/plugin-solana-agent-kit/package.json index 920214d49f7..1d68fd29d0f 100644 --- a/packages/plugin-solana-agent-kit/package.json +++ b/packages/plugin-solana-agent-kit/package.json @@ -37,5 +37,8 @@ "peerDependencies": { "form-data": "4.0.1", "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-solana-agentkit/src/index.ts b/packages/plugin-solana-agentkit/src/index.ts deleted file mode 100644 index 0aa9dd0ba00..00000000000 --- a/packages/plugin-solana-agentkit/src/index.ts +++ /dev/null @@ -1,12 +0,0 @@ -import type { Plugin } from "@elizaos/core"; -import createToken from "./actions/createToken.ts"; - -export const solanaAgentkitPlugin: Plugin = { - name: "solana", - description: "Solana Plugin with solana agent kit for Eliza", - actions: [createToken], - evaluators: [], - providers: [], -}; - -export default solanaAgentkitPlugin; diff --git a/packages/plugin-solana-v2/package.json b/packages/plugin-solana-v2/package.json index 7c37e8c976d..7c77ea5316d 100644 --- a/packages/plugin-solana-v2/package.json +++ b/packages/plugin-solana-v2/package.json @@ -31,5 +31,8 @@ "lint:fix": "biome check --apply src/", "format": "biome format src/", "format:fix": "biome format --write src/" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-solana/package.json b/packages/plugin-solana/package.json index 5560d4512b4..9e4f58cb68b 100644 --- a/packages/plugin-solana/package.json +++ b/packages/plugin-solana/package.json @@ -50,5 +50,8 @@ "peerDependencies": { "form-data": "4.0.1", "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-spheron/package.json b/packages/plugin-spheron/package.json index bb7a253cc34..7270daf24e1 100644 --- a/packages/plugin-spheron/package.json +++ b/packages/plugin-spheron/package.json @@ -22,5 +22,8 @@ "typescript": "^5.0.0", "@biomejs/biome": "1.5.3", "tsup": "^8.3.5" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-squid-router/package.json b/packages/plugin-squid-router/package.json index 4ee9bdbe5ee..839e5044bff 100644 --- a/packages/plugin-squid-router/package.json +++ b/packages/plugin-squid-router/package.json @@ -28,5 +28,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-stargaze/package.json b/packages/plugin-stargaze/package.json index 33a0dad855e..0362bc1acf9 100644 --- a/packages/plugin-stargaze/package.json +++ b/packages/plugin-stargaze/package.json @@ -20,5 +20,8 @@ "lint:fix": "biome check --apply src/", "format": "biome format src/", "format:fix": "biome format --write src/" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-starknet/package.json b/packages/plugin-starknet/package.json index 340cd75c393..a44f9da0d95 100644 --- a/packages/plugin-starknet/package.json +++ b/packages/plugin-starknet/package.json @@ -44,5 +44,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-story/package.json b/packages/plugin-story/package.json index d46b552b9e1..3dd1daef0b5 100644 --- a/packages/plugin-story/package.json +++ b/packages/plugin-story/package.json @@ -39,5 +39,8 @@ "devDependencies": { "@types/node": "^22.10.1", "@biomejs/biome": "1.5.3" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-sui/package.json b/packages/plugin-sui/package.json index 7b4ad9691a4..7f385ad6d53 100644 --- a/packages/plugin-sui/package.json +++ b/packages/plugin-sui/package.json @@ -44,5 +44,8 @@ "peerDependencies": { "form-data": "4.0.1", "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-suno/package.json b/packages/plugin-suno/package.json index 35f331c298d..c5fbf275876 100644 --- a/packages/plugin-suno/package.json +++ b/packages/plugin-suno/package.json @@ -24,5 +24,8 @@ "jest": "^27.0.0", "@types/jest": "^27.0.0", "tsup": "^8.3.5" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-tee-log/package.json b/packages/plugin-tee-log/package.json index 5d36fe2cc2e..6be1f80fde0 100644 --- a/packages/plugin-tee-log/package.json +++ b/packages/plugin-tee-log/package.json @@ -23,5 +23,8 @@ "lint:fix": "biome check --apply src/", "format": "biome format src/", "format:fix": "biome format --write src/" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-tee-marlin/package.json b/packages/plugin-tee-marlin/package.json index 0641272eed6..15cee3faeda 100644 --- a/packages/plugin-tee-marlin/package.json +++ b/packages/plugin-tee-marlin/package.json @@ -21,5 +21,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-tee-verifiable-log/package.json b/packages/plugin-tee-verifiable-log/package.json index e083a2890d1..12a1b377755 100644 --- a/packages/plugin-tee-verifiable-log/package.json +++ b/packages/plugin-tee-verifiable-log/package.json @@ -31,5 +31,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-tee/package.json b/packages/plugin-tee/package.json index 4aa3d037eb8..d6dc5d683ca 100644 --- a/packages/plugin-tee/package.json +++ b/packages/plugin-tee/package.json @@ -44,5 +44,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-thirdweb/package.json b/packages/plugin-thirdweb/package.json index 51ed48454c7..853bc7929c2 100644 --- a/packages/plugin-thirdweb/package.json +++ b/packages/plugin-thirdweb/package.json @@ -23,5 +23,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-ton/package.json b/packages/plugin-ton/package.json index 71b8167dc0f..0f8412dc55a 100644 --- a/packages/plugin-ton/package.json +++ b/packages/plugin-ton/package.json @@ -42,5 +42,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-trikon/package.json b/packages/plugin-trikon/package.json index 57ad98efdf0..7d30419065e 100644 --- a/packages/plugin-trikon/package.json +++ b/packages/plugin-trikon/package.json @@ -38,5 +38,8 @@ "format": "biome format src/", "format:fix": "biome format --write src/", "test": "vitest run" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-trustdb/package.json b/packages/plugin-trustdb/package.json index cbd23f1be8a..3d841be1180 100644 --- a/packages/plugin-trustdb/package.json +++ b/packages/plugin-trustdb/package.json @@ -42,5 +42,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-tts/package.json b/packages/plugin-tts/package.json index b4637acf69c..0ec9cad3845 100644 --- a/packages/plugin-tts/package.json +++ b/packages/plugin-tts/package.json @@ -38,5 +38,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-twitter/package.json b/packages/plugin-twitter/package.json index 6db207eec93..c66da0d2c53 100644 --- a/packages/plugin-twitter/package.json +++ b/packages/plugin-twitter/package.json @@ -36,5 +36,8 @@ "lint:fix": "biome check --apply src/", "format": "biome format src/", "format:fix": "biome format --write src/" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-udio/package.json b/packages/plugin-udio/package.json index 0ae81c1cb8d..8dad4cad0ab 100644 --- a/packages/plugin-udio/package.json +++ b/packages/plugin-udio/package.json @@ -24,5 +24,8 @@ "jest": "^27.0.0", "@types/jest": "^27.0.0", "tsup": "^8.3.5" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-video-generation/package.json b/packages/plugin-video-generation/package.json index 6adf0030fe0..b3f96e3a8d9 100644 --- a/packages/plugin-video-generation/package.json +++ b/packages/plugin-video-generation/package.json @@ -36,5 +36,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-web-search/package.json b/packages/plugin-web-search/package.json index 313fd7f5a46..1651d79fb26 100644 --- a/packages/plugin-web-search/package.json +++ b/packages/plugin-web-search/package.json @@ -37,5 +37,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-whatsapp/package.json b/packages/plugin-whatsapp/package.json index c5951769526..6857c535270 100644 --- a/packages/plugin-whatsapp/package.json +++ b/packages/plugin-whatsapp/package.json @@ -40,5 +40,8 @@ "@typescript-eslint/parser": "8.16.0", "typescript": "5.6.3", "vitest": "^3.0.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-zerion/package.json b/packages/plugin-zerion/package.json index 7d4fbea6b6a..1c53e5548c9 100644 --- a/packages/plugin-zerion/package.json +++ b/packages/plugin-zerion/package.json @@ -18,5 +18,8 @@ "lint:fix": "biome check --apply src/", "format": "biome format src/", "format:fix": "biome format --write src/" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-zilliqa/package.json b/packages/plugin-zilliqa/package.json index 0069e871432..feb47ffa26b 100644 --- a/packages/plugin-zilliqa/package.json +++ b/packages/plugin-zilliqa/package.json @@ -29,5 +29,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/plugin-zksync-era/package.json b/packages/plugin-zksync-era/package.json index 7a7a01ce05c..3e377a1d8ae 100644 --- a/packages/plugin-zksync-era/package.json +++ b/packages/plugin-zksync-era/package.json @@ -35,5 +35,8 @@ }, "peerDependencies": { "whatwg-url": "7.1.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index b1aeacb66b4..ed52b9e0295 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -47900,7 +47900,7 @@ snapshots: dependencies: '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/safe-json': 1.0.2 - cross-fetch: 3.1.8(encoding@0.1.13) + cross-fetch: 3.2.0(encoding@0.1.13) events: 3.3.0 transitivePeerDependencies: - encoding @@ -53795,7 +53795,7 @@ snapshots: extract-zip@2.0.1: dependencies: - debug: 4.3.4 + debug: 4.4.0(supports-color@8.1.1) get-stream: 5.2.0 yauzl: 2.10.0 optionalDependencies: