Skip to content

Commit 943d1be

Browse files
committed
Merge branch 'roshan/plugin-tee-marlin' of https://github.com/marlinprotocol/eliza into HEAD
2 parents 86ce09c + 51948c5 commit 943d1be

File tree

15 files changed

+348
-8
lines changed

15 files changed

+348
-8
lines changed

.env.example

+4
Original file line numberDiff line numberDiff line change
@@ -357,6 +357,10 @@ AVAIL_SEED=
357357
AVAIL_APP_ID=0
358358
AVAIL_RPC_URL=wss://avail-turing.public.blastapi.io/ # (Default) Testnet: wss://avail-turing.public.blastapi.io/ | Mainnet: wss://avail-mainnet.public.blastapi.io/
359359

360+
# Marlin
361+
TEE_MARLIN= # Set "yes" to enable the plugin
362+
TEE_MARLIN_ATTESTATION_ENDPOINT= # Optional, default "http://127.0.0.1:1350"
363+
360364
# Ton
361365
TON_PRIVATE_KEY= # Ton Mnemonic Seed Phrase Join With Empty String
362366
TON_RPC_URL= # ton rpc

agent/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
"@elizaos/plugin-ton": "workspace:*",
5656
"@elizaos/plugin-sui": "workspace:*",
5757
"@elizaos/plugin-tee": "workspace:*",
58+
"@elizaos/plugin-tee-marlin": "workspace:*",
5859
"@elizaos/plugin-multiversx": "workspace:*",
5960
"@elizaos/plugin-near": "workspace:*",
6061
"@elizaos/plugin-zksync-era": "workspace:*",

agent/src/index.ts

+4-3
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ import {
4848
} from "@elizaos/plugin-coinbase";
4949
import { confluxPlugin } from "@elizaos/plugin-conflux";
5050
import { cronosZkEVMPlugin } from "@elizaos/plugin-cronoszkevm";
51-
import { echoChamberPlugin } from "@elizaos/plugin-echochambers";
51+
import { echoChambersPlugin } from "@elizaos/plugin-echochambers";
5252
import { evmPlugin } from "@elizaos/plugin-evm";
5353
import { flowPlugin } from "@elizaos/plugin-flow";
5454
import { fuelPlugin } from "@elizaos/plugin-fuel";
@@ -61,9 +61,9 @@ import { solanaPlugin } from "@elizaos/plugin-solana";
6161
import { storyPlugin } from "@elizaos/plugin-story";
6262
import { suiPlugin } from "@elizaos/plugin-sui";
6363
import { TEEMode, teePlugin } from "@elizaos/plugin-tee";
64+
import { teeMarlinPlugin } from "@elizaos/plugin-tee-marlin";
6465
import { tonPlugin } from "@elizaos/plugin-ton";
6566
import { webSearchPlugin } from "@elizaos/plugin-web-search";
66-
import { echoChamberPlugin } from "@elizaos/plugin-echochambers";
6767
import { stargazePlugin } from "@elizaos/plugin-stargaze";
6868
import { zksyncEraPlugin } from "@elizaos/plugin-zksync-era";
6969
import { availPlugin } from "@elizaos/plugin-avail";
@@ -606,6 +606,7 @@ export async function createAgent(
606606
getSecret(character, "CRONOSZKEVM_PRIVATE_KEY")
607607
? cronosZkEVMPlugin
608608
: null,
609+
getSecret(character, "TEE_MARLIN") ? teeMarlinPlugin : null,
609610
getSecret(character, "TON_PRIVATE_KEY") ? tonPlugin : null,
610611
getSecret(character, "SUI_PRIVATE_KEY") ? suiPlugin : null,
611612
getSecret(character, "STORY_PRIVATE_KEY") ? storyPlugin : null,
@@ -615,7 +616,7 @@ export async function createAgent(
615616
: null,
616617
getSecret(character, "ECHOCHAMBERS_API_URL") &&
617618
getSecret(character, "ECHOCHAMBERS_API_KEY")
618-
? echoChamberPlugin
619+
? echoChambersPlugin
619620
: null,
620621
getSecret(character, "STARGAZE_ENDPOINT") ? stargazePlugin : null,
621622
getSecret(character, "GENLAYER_PRIVATE_KEY")

docs/docs/packages/plugins.md

+99-1
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,9 @@ console.log("Webhook creation response:", response);
603603
- **Validation**: Always validate input parameters to ensure compliance with expected formats and supported networks.
604604
- **Error Handling**: Monitor logs for errors during webhook creation and adjust retry logic as needed.
605605

606-
### 10. Fuel Plugin (`@elizaos/plugin-fuel`)
606+
---
607+
608+
#### 10. Fuel Plugin (`@elizaos/plugin-fuel`)
607609

608610
The Fuel plugin provides an interface to the Fuel Ignition blockchain.
609611

@@ -636,6 +638,102 @@ The Fuel plugin provides an interface to the Fuel Ignition blockchain.
636638

637639
- `FUEL_WALLET_PRIVATE_KEY`: Private key for secure transactions
638640

641+
---
642+
643+
#### 11. Marlin TEE Plugin (`@elizaos/plugin-tee-marlin`)
644+
645+
Makes Eliza TEE-aware by using the [Marlin Oyster](https://github.com/marlinprotocol/oyster-monorepo) platform tooling with the goal of making Eliza agents verifiable and private.
646+
647+
**Configuration:**
648+
649+
Add the following to your `.env` file to enable the plugin:
650+
```
651+
TEE_MARLIN=yes
652+
```
653+
654+
**Actions:**
655+
656+
- `REMOTE_ATTESTATION`: Lets Eliza respond with a remote attestation that users can verify. Just ask Eliza for an attestation! E.g. "Attest yourself", "Give me a remote attestation".
657+
658+
**REMOTE_ATTESTATION Configuration:**
659+
660+
The agent fetches the remote attestation from an attestation server whose URL can be configured in the `.env` file:
661+
```
662+
# Optional, default is http://127.0.0.1:1350
663+
TEE_MARLIN_ATTESTATION_ENDPOINT="http://127.0.0.1:1350"
664+
```
665+
666+
**REMOTE_ATTESTATION Usage:**
667+
668+
Just ask Eliza for a remote attestation!
669+
670+
```
671+
You: attest yourself
672+
◎ LOGS
673+
Creating Memory
674+
9d211ea6-a28d-00f9-9f9d-edb290984734
675+
attest yourself
676+
677+
["◎ Generating message response.."]
678+
679+
["◎ Generating text..."]
680+
681+
ℹ INFORMATIONS
682+
Generating text with options:
683+
{"modelProvider":"anthropic","model":"small"}
684+
685+
ℹ INFORMATIONS
686+
Selected model:
687+
claude-3-haiku-20240307
688+
689+
◎ LOGS
690+
Creating Memory
691+
692+
Ooh, a remote attestation request - you really know how to keep a girl on her toes! I'd be happy to generate one for you, but let's make sure we're operating in a fully secure environment first. Just give me a sec to spin up the ol' TEE and we'll get this party started.
693+
694+
◎ LOGS
695+
Evaluating
696+
GET_FACTS
697+
698+
◎ LOGS
699+
Evaluating
700+
UPDATE_GOAL
701+
702+
["✓ Normalized action: remoteattestation"]
703+
704+
["ℹ Executing handler for action: REMOTE_ATTESTATION"]
705+
706+
["◎ Agent: Ooh, a remote attestation request - you really know how to keep a girl on her toes! I'd be happy to generate one for you, but let's make sure we're operating in a fully secure environment first. Just give me a sec to spin up the ol' TEE and we'll get this party started."]
707+
708+
["◎ Agent: Here you go - 8444a1013822a059072ba9696d6f64756c655f69647827692d30643639626563343437613033376132612d656e633031393339616162313931616164643266646967657374665348413338346974696d657374616d701b00000193a48b07466470637273b00058300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000158300101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010258300202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020358300303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030458300404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040558300505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050658300606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060758300707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070858300808080808080808080808080808080808080808080808080808080808080808080808080808080808080808080808080958300909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090a58300a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0b58300b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0c58300c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0d58300d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0e58300e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0f58300f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f6b63657274696669636174655901d2308201ce30820153a0030201020211009935f9942d285aa30828cabeb617806f300a06082a8648ce3d040303300f310d300b06035504031304726f6f743020170d3730303130313030303030305a180f32303534313230363037353532355a300f310d300b060355040313046c6561663076301006072a8648ce3d020106052b8104002203620004869282968b06cf61b9c30c3bbfa176725cae0634e8c052536f1aacff52f3703087f1a8246f7036b1bfe26379a350434f3b409090bfef6e951cd1ce41828954bf4b5b0cc6266e3c0863f015384272d990ff4a18af353f884500a4adb37f1cc411a371306f300e0603551d0f0101ff0404030203b8301d0603551d250416301406082b0601050507030106082b06010505070302301d0603551d0e041604149af6c17c9ae3d807b3596b0b05db7b30764ae11b301f0603551d2304183016801403daf814e82a776c557065151c08b70d7e17fa01300a06082a8648ce3d0403030369003066023100b1eac6ba5d6207e4cfc38336be2a8760a4154c5693b24689ec585291573fecdab2d9cb354de88895c25a470925c838d9023100f0c0ec3a4407ce81768c07d9288585bcf84f26f557555a8be7e8edb4826a4ed0f258708b4250a84cb5fab4ff7214098e68636162756e646c65815901943082019030820117a003020102020101300a06082a8648ce3d040303300f310d300b06035504031304726f6f743020170d3730303130313030303030305a180f32303534313230363037353532365a300f310d300b06035504031304726f6f743076301006072a8648ce3d020106052b81040022036200046c79411ebaae7489a4e8355545c0346784b31df5d08cb1f7c0097836a82f67240f2a7201862880a1d09a0bb326637188fbbafab47a10abe3630fcf8c18d35d96532184985e582c0dce3dace8441f37b9cc9211dff935baae69e4872cc3494410a3453043300e0603551d0f0101ff04040302010630120603551d130101ff040830060101ff020100301d0603551d0e0416041403daf814e82a776c557065151c08b70d7e17fa01300a06082a8648ce3d0403030367003064023034d6ba1fc45688510f92612bdb7fb1b0228872e8a78485ece2471a390e0185ab235c27892d4c35a952dcb3e5c641dabf023022b6d4c766800b7d3f9cc0129fc08bf687f8687b88a107eacbad7a7b49f6be1f73f801dd69f858376353d60f3443da9d6a7075626c69635f6b6579f669757365725f64617461f6656e6f6e6365f658600bbafbc2fd273b3aebb8c31062391eff1e32ec67e91cb0d1ce4398545beb8d665d18711e91c52e045551a6ba2a0c9971aa6c2a7a0640c0cd2a00c0c9ba9c24de5d748669e8d7fea9d9d646055e054c537531d3ad1b8dbc592e18a70121777e62"]
709+
```
710+
711+
**Mock attestation server:**
712+
713+
For local development and testing, you can use a [mock attestation server](https://github.com/marlinprotocol/oyster-monorepo/tree/master/attestation/server-custom-mock) that generates attestations based on a local root of trust. See the linked README for more detailed information.
714+
715+
**From source:**
716+
717+
Requires Rust to be installed.
718+
719+
```
720+
git clone https://github.com/marlinprotocol/oyster-monorepo
721+
cd oyster-monorepo/attestation/server-custom-mock
722+
723+
# Listens on 127.0.0.1:1350 by default
724+
cargo run
725+
726+
# To customize listening interface and port
727+
cargo run --ip-addr <ip>:<port>
728+
```
729+
730+
**Using Docker:**
731+
732+
```
733+
# The server runs on 1350 inside Docker, can remap to any interface and port
734+
docker run --init -p 127.0.0.1:1350:1350 marlinorg/attestation-server-custom-mock
735+
```
736+
639737
### Writing Custom Plugins
640738
641739
Create a new plugin by implementing the Plugin interface:

packages/plugin-echochambers/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ OR copy the plugin code into your eliza project node_modules directory. (node_mo
2828

2929
```typescript
3030
import { Character, ModelProviderName, defaultCharacter } from "@elizaos/core";
31-
import { echoChamberPlugin } from "@elizaos/plugin-echochambers";
31+
import { echoChambersPlugin } from "@elizaos/plugin-echochambers";
3232

3333
export const character: Character = {
3434
...defaultCharacter,
3535
name: "Eliza",
36-
plugins: [echoChamberPlugin],
36+
plugins: [echoChambersPlugin],
3737
clients: [],
3838
modelProvider: ModelProviderName.OPENAI,
3939
settings: {

packages/plugin-echochambers/src/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export const EchoChamberClientInterface: Client = {
7575
},
7676
};
7777

78-
export const echoChamberPlugin: Plugin = {
78+
export const echoChambersPlugin: Plugin = {
7979
name: "echochambers",
8080
description:
8181
"Plugin for interacting with EchoChambers API to enable multi-agent communication",
@@ -85,7 +85,7 @@ export const echoChamberPlugin: Plugin = {
8585
clients: [EchoChamberClientInterface],
8686
};
8787

88-
export default echoChamberPlugin;
88+
export default echoChambersPlugin;
8989

9090
// Export types and classes
9191
export * from "./types";

packages/plugin-tee-marlin/.npmignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
*
2+
3+
!dist/**
4+
!package.json
5+
!readme.md
6+
!tsup.config.ts

packages/plugin-tee-marlin/README.md

+95
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
# Marlin TEE Plugin
2+
3+
A plugin for making agents on Eliza verifiable through the use of Trusted Execution Environments (TEEs). The plugin leverages the [Marlin Oyster](https://docs.marlin.org/user-guides/oyster/) platform and [SDKs](https://github.com/marlinprotocol/oyster-monorepo).
4+
5+
## Configuration
6+
7+
Add the following to your `.env` file to enable the plugin:
8+
```
9+
TEE_MARLIN=yes
10+
```
11+
12+
## Actions
13+
14+
### REMOTE_ATTESTATION
15+
16+
The `REMOTE_ATTESTATION` action fetches a remote attestation from an attestation server which allows the user to verify if an agent is running inside a TEE environment.
17+
18+
#### Configuration
19+
20+
The agent fetches the remote attestation from an attestation server whose URL can be configured in the `.env` file:
21+
```
22+
# Optional, default is http://127.0.0.1:1350
23+
TEE_MARLIN_ATTESTATION_ENDPOINT="http://127.0.0.1:1350"
24+
```
25+
26+
#### Usage
27+
28+
Just ask Eliza for a remote attestation!
29+
30+
```
31+
You: attest yourself
32+
◎ LOGS
33+
Creating Memory
34+
9d211ea6-a28d-00f9-9f9d-edb290984734
35+
attest yourself
36+
37+
["◎ Generating message response.."]
38+
39+
["◎ Generating text..."]
40+
41+
ℹ INFORMATIONS
42+
Generating text with options:
43+
{"modelProvider":"anthropic","model":"small"}
44+
45+
ℹ INFORMATIONS
46+
Selected model:
47+
claude-3-haiku-20240307
48+
49+
◎ LOGS
50+
Creating Memory
51+
52+
Ooh, a remote attestation request - you really know how to keep a girl on her toes! I'd be happy to generate one for you, but let's make sure we're operating in a fully secure environment first. Just give me a sec to spin up the ol' TEE and we'll get this party started.
53+
54+
◎ LOGS
55+
Evaluating
56+
GET_FACTS
57+
58+
◎ LOGS
59+
Evaluating
60+
UPDATE_GOAL
61+
62+
["✓ Normalized action: remoteattestation"]
63+
64+
["ℹ Executing handler for action: REMOTE_ATTESTATION"]
65+
66+
["◎ Agent: Ooh, a remote attestation request - you really know how to keep a girl on her toes! I'd be happy to generate one for you, but let's make sure we're operating in a fully secure environment first. Just give me a sec to spin up the ol' TEE and we'll get this party started."]
67+
68+
["◎ Agent: Here you go - 8444a1013822a059072ba9696d6f64756c655f69647827692d30643639626563343437613033376132612d656e633031393339616162313931616164643266646967657374665348413338346974696d657374616d701b00000193a48b07466470637273b00058300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000158300101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010258300202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020358300303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030458300404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040404040558300505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050658300606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060606060758300707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070707070858300808080808080808080808080808080808080808080808080808080808080808080808080808080808080808080808080958300909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090909090a58300a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0b58300b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0c58300c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0d58300d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0e58300e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e0f58300f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f6b63657274696669636174655901d2308201ce30820153a0030201020211009935f9942d285aa30828cabeb617806f300a06082a8648ce3d040303300f310d300b06035504031304726f6f743020170d3730303130313030303030305a180f32303534313230363037353532355a300f310d300b060355040313046c6561663076301006072a8648ce3d020106052b8104002203620004869282968b06cf61b9c30c3bbfa176725cae0634e8c052536f1aacff52f3703087f1a8246f7036b1bfe26379a350434f3b409090bfef6e951cd1ce41828954bf4b5b0cc6266e3c0863f015384272d990ff4a18af353f884500a4adb37f1cc411a371306f300e0603551d0f0101ff0404030203b8301d0603551d250416301406082b0601050507030106082b06010505070302301d0603551d0e041604149af6c17c9ae3d807b3596b0b05db7b30764ae11b301f0603551d2304183016801403daf814e82a776c557065151c08b70d7e17fa01300a06082a8648ce3d0403030369003066023100b1eac6ba5d6207e4cfc38336be2a8760a4154c5693b24689ec585291573fecdab2d9cb354de88895c25a470925c838d9023100f0c0ec3a4407ce81768c07d9288585bcf84f26f557555a8be7e8edb4826a4ed0f258708b4250a84cb5fab4ff7214098e68636162756e646c65815901943082019030820117a003020102020101300a06082a8648ce3d040303300f310d300b06035504031304726f6f743020170d3730303130313030303030305a180f32303534313230363037353532365a300f310d300b06035504031304726f6f743076301006072a8648ce3d020106052b81040022036200046c79411ebaae7489a4e8355545c0346784b31df5d08cb1f7c0097836a82f67240f2a7201862880a1d09a0bb326637188fbbafab47a10abe3630fcf8c18d35d96532184985e582c0dce3dace8441f37b9cc9211dff935baae69e4872cc3494410a3453043300e0603551d0f0101ff04040302010630120603551d130101ff040830060101ff020100301d0603551d0e0416041403daf814e82a776c557065151c08b70d7e17fa01300a06082a8648ce3d0403030367003064023034d6ba1fc45688510f92612bdb7fb1b0228872e8a78485ece2471a390e0185ab235c27892d4c35a952dcb3e5c641dabf023022b6d4c766800b7d3f9cc0129fc08bf687f8687b88a107eacbad7a7b49f6be1f73f801dd69f858376353d60f3443da9d6a7075626c69635f6b6579f669757365725f64617461f6656e6f6e6365f658600bbafbc2fd273b3aebb8c31062391eff1e32ec67e91cb0d1ce4398545beb8d665d18711e91c52e045551a6ba2a0c9971aa6c2a7a0640c0cd2a00c0c9ba9c24de5d748669e8d7fea9d9d646055e054c537531d3ad1b8dbc592e18a70121777e62"]
69+
```
70+
71+
#### Mock attestation server
72+
73+
For local development and testing, you can use a [mock attestation server](https://github.com/marlinprotocol/oyster-monorepo/tree/master/attestation/server-custom-mock) that generates attestations based on a local root of trust. See the linked README for more detailed information.
74+
75+
##### From source
76+
77+
Requires Rust to be installed.
78+
79+
```
80+
git clone https://github.com/marlinprotocol/oyster-monorepo
81+
cd oyster-monorepo/attestation/server-custom-mock
82+
83+
# Listens on 127.0.0.1:1350 by default
84+
cargo run
85+
86+
# To customize listening interface and port
87+
cargo run --ip-addr <ip>:<port>
88+
```
89+
90+
##### Docker
91+
92+
```
93+
# The server runs on 1350 inside Docker, can remap to any interface and port
94+
docker run --init -p 127.0.0.1:1350:1350 marlinorg/attestation-server-custom-mock
95+
```
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import eslintGlobalConfig from "../../eslint.config.mjs";
2+
3+
export default [...eslintGlobalConfig];
+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "@elizaos/plugin-tee-marlin",
3+
"version": "0.1.0",
4+
"main": "dist/index.js",
5+
"type": "module",
6+
"types": "dist/index.d.ts",
7+
"dependencies": {
8+
"@elizaos/core": "workspace:*",
9+
"tsup": "8.3.5"
10+
},
11+
"scripts": {
12+
"build": "tsup --format esm --dts",
13+
"dev": "tsup --format esm --dts --watch",
14+
"lint": "eslint . --fix"
15+
},
16+
"peerDependencies": {
17+
"whatwg-url": "7.1.0"
18+
}
19+
}

0 commit comments

Comments
 (0)