Skip to content

Commit

Permalink
chore: fix develop building
Browse files Browse the repository at this point in the history
removes holdstation plugin temporarily
  • Loading branch information
wtfsayo committed Jan 22, 2025
1 parent 83065c4 commit da2a241
Show file tree
Hide file tree
Showing 22 changed files with 147 additions and 892 deletions.
1 change: 0 additions & 1 deletion agent/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@
"@elizaos/plugin-pyth-data": "workspace:*",
"@elizaos/plugin-openai": "workspace:*",
"@elizaos/plugin-devin": "workspace:*",
"@elizaos/plugin-holdstation": "workspace:*",
"@elizaos/plugin-router-nitro": "workspace:*",
"@elizaos/plugin-nvidia-nim": "workspace:*",
"@elizaos/plugin-0x": "workspace:*",
Expand Down
4 changes: 0 additions & 4 deletions agent/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ import { agentKitPlugin } from "@elizaos/plugin-agentkit";
import { PrimusAdapter } from "@elizaos/plugin-primus";
import { lightningPlugin } from "@elizaos/plugin-lightning";
import { elizaCodeinPlugin, onchainJson } from "@elizaos/plugin-iq6900";
import { holdstationPlugin } from "@elizaos/plugin-holdstation";

import {
AgentRuntime,
Expand Down Expand Up @@ -1100,9 +1099,6 @@ export async function createAgent(
getSecret(character, "DEVIN_API_TOKEN")
? devinPlugin
: null,
getSecret(character, "HOLDSTATION_PRIVATE_KEY")
? holdstationPlugin
: null,
getSecret(character, "INITIA_PRIVATE_KEY") ? initiaPlugin : null,

getSecret(character, "NVIDIA_NIM_API_KEY") ||
Expand Down
64 changes: 32 additions & 32 deletions packages/plugin-abstract/package.json
Original file line number Diff line number Diff line change
@@ -1,34 +1,34 @@
{
"name": "@elizaos/plugin-abstract",
"version": "0.1.9-alpha.1",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"@elizaos/source": "./src/index.ts",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist"
],
"dependencies": {
"@abstract-foundation/agw-client": "1.0.1",
"@elizaos/core": "workspace:*",
"tsup": "^8.3.5",
"viem": "2.22.2"
},
"scripts": {
"build": "tsup --format esm --dts",
"dev": "tsup --format esm --dts --watch"
},
"peerDependencies": {
"whatwg-url": "7.1.0"
"name": "@elizaos/plugin-abstract",
"version": "0.1.9-alpha.1",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"@elizaos/source": "./src/index.ts",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
}
},
"files": [
"dist"
],
"dependencies": {
"@elizaos/core": "workspace:*",
"@abstract-foundation/agw-client": "1.0.1"
},
"devDependencies": {
"tsup": "8.3.5"
},
"scripts": {
"build": "tsup src/index.ts --format esm --no-dts"
},
"peerDependencies": {
"whatwg-url": "7.1.0"
}
}
59 changes: 30 additions & 29 deletions packages/plugin-cronos/package.json
Original file line number Diff line number Diff line change
@@ -1,32 +1,33 @@
{
"name": "@elizaos/plugin-cronos",
"version": "0.1.9-alpha.1",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"@elizaos/source": "./src/index.ts",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist"
],
"dependencies": {
"@elizaos/core": "workspace:*",
"tsup": "^8.3.5",
"viem": "2.22.2"
},
"scripts": {
"build": "tsup --format esm --dts"
},
"peerDependencies": {
"whatwg-url": "7.1.0"
"name": "@elizaos/plugin-cronos",
"version": "0.1.9-alpha.1",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"@elizaos/source": "./src/index.ts",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist"
],
"dependencies": {
"@elizaos/core": "workspace:*"
},
"devDependencies": {
"tsup": "8.3.5"
},
"scripts": {
"build": "tsup src/index.ts --format esm --no-dts"
},
"peerDependencies": {
"whatwg-url": "7.1.0"
}
}
6 changes: 0 additions & 6 deletions packages/plugin-holdstation/.npmignore

This file was deleted.

51 changes: 0 additions & 51 deletions packages/plugin-holdstation/README.md

This file was deleted.

3 changes: 0 additions & 3 deletions packages/plugin-holdstation/eslint.config.mjs

This file was deleted.

32 changes: 0 additions & 32 deletions packages/plugin-holdstation/package.json

This file was deleted.

Loading

0 comments on commit da2a241

Please sign in to comment.