Skip to content

Commit 3b8532d

Browse files
committed
chore: update plugin configuration and dependencies
1 parent ade452e commit 3b8532d

2 files changed

Lines changed: 55 additions & 43 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
.turbo

package.json

Lines changed: 53 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,54 @@
11
{
2-
"name": "@elizaos/plugin-evm",
3-
"version": "0.1.9",
4-
"type": "module",
5-
"main": "dist/index.js",
6-
"module": "dist/index.js",
7-
"types": "dist/index.d.ts",
8-
"exports": {
9-
"./package.json": "./package.json",
10-
".": {
11-
"import": {
12-
"@elizaos/source": "./src/index.ts",
13-
"types": "./dist/index.d.ts",
14-
"default": "./dist/index.js"
15-
}
16-
}
17-
},
18-
"files": [
19-
"dist"
20-
],
21-
"dependencies": {
22-
"@elizaos/core": "workspace:*",
23-
"@elizaos/plugin-tee": "workspace:*",
24-
"@lifi/data-types": "5.15.5",
25-
"@lifi/sdk": "3.4.1",
26-
"@lifi/types": "16.3.0",
27-
"tsup": "8.3.5"
28-
},
29-
"devDependencies": {
30-
"@biomejs/biome": "1.9.4"
31-
},
32-
"scripts": {
33-
"build": "tsup --format esm --dts",
34-
"dev": "tsup --format esm --dts --watch",
35-
"test": "vitest run",
36-
"lint": "biome lint .",
37-
"lint:fix": "biome check --apply .",
38-
"format": "biome format .",
39-
"format:fix": "biome format --write ."
40-
},
41-
"peerDependencies": {
42-
"whatwg-url": "7.1.0"
43-
}
44-
}
2+
"name": "@elizaos/plugin-evm",
3+
"version": "0.1.9",
4+
"type": "module",
5+
"main": "dist/index.js",
6+
"module": "dist/index.js",
7+
"types": "dist/index.d.ts",
8+
"exports": {
9+
"./package.json": "./package.json",
10+
".": {
11+
"import": {
12+
"@elizaos/source": "./src/index.ts",
13+
"types": "./dist/index.d.ts",
14+
"default": "./dist/index.js"
15+
}
16+
}
17+
},
18+
"files": [
19+
"dist"
20+
],
21+
"dependencies": {
22+
"@elizaos/plugin-tee": "workspace:*",
23+
"@lifi/data-types": "5.15.5",
24+
"@lifi/sdk": "3.4.1",
25+
"@lifi/types": "16.3.0",
26+
"tsup": "8.3.5"
27+
},
28+
"devDependencies": {
29+
"@biomejs/biome": "1.9.4"
30+
},
31+
"scripts": {
32+
"build": "tsup --format esm --dts",
33+
"dev": "tsup --format esm --dts --watch",
34+
"test": "vitest run",
35+
"lint": "biome lint .",
36+
"lint:fix": "biome check --apply .",
37+
"format": "biome format .",
38+
"format:fix": "biome format --write ."
39+
},
40+
"peerDependencies": {
41+
"whatwg-url": "7.1.0"
42+
},
43+
"agentConfig": {
44+
"pluginType": "elizaos:plugin:1.0.0",
45+
"pluginParameters": {
46+
"EVM_PRIVATE_KEY": {
47+
"type": "string"
48+
},
49+
"EVM_PROVIDER_URL": {
50+
"type": "string"
51+
}
52+
}
53+
}
54+
}

0 commit comments

Comments
 (0)