Skip to content

Commit

Permalink
v1.0.0-alpha.12
Browse files Browse the repository at this point in the history
  • Loading branch information
lalalune committed Mar 9, 2025
1 parent 83166f0 commit 0ea9a79
Show file tree
Hide file tree
Showing 21 changed files with 181 additions and 220 deletions.
178 changes: 67 additions & 111 deletions bun.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.0-alpha.11",
"version": "1.0.0-alpha.12",
"packages": [
"packages/*"
],
Expand Down
10 changes: 5 additions & 5 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@elizaos/cli",
"version": "1.0.0-alpha.11",
"version": "1.0.0-alpha.12",
"description": "elizaOS CLI - Manage your AI agents and plugins",
"publishConfig": {
"access": "public"
Expand Down Expand Up @@ -44,10 +44,10 @@
"@babel/core": "^7.22.1",
"@babel/parser": "^7.22.6",
"@babel/plugin-transform-typescript": "^7.22.5",
"@elizaos/core": "^1.0.0-alpha.11",
"@elizaos/plugin-sql": "^1.0.0-alpha.11",
"@elizaos/plugin-starter": "^1.0.0-alpha.11",
"@elizaos/project-starter": "^1.0.0-alpha.11",
"@elizaos/core": "^1.0.0-alpha.12",
"@elizaos/plugin-sql": "^1.0.0-alpha.12",
"@elizaos/plugin-starter": "^1.0.0-alpha.12",
"@elizaos/project-starter": "^1.0.0-alpha.12",
"@noble/curves": "^1.8.1",
"axios": "^1.7.9",
"chalk": "5.2.0",
Expand Down
7 changes: 6 additions & 1 deletion packages/cli/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { teeCommand as tee } from "@/src/commands/tee";
import { loadEnvironment } from "@/src/utils/get-config";
import { logger } from "@/src/utils/logger";
import { Command } from "commander";
import fs from "node:fs";

process.on("SIGINT", () => process.exit(0));
process.on("SIGTERM", () => process.exit(0));
Expand All @@ -20,10 +21,14 @@ async function main() {
// Load environment variables, trying project .env first, then global ~/.eliza/.env
await loadEnvironment();

// read package.json version
const packageJson = JSON.parse(fs.readFileSync("package.json", "utf8"));
const version = packageJson.version;

const program = new Command()
.name("eliza")
.description("elizaOS CLI - Manage your AI agents and plugins")
.version("1.0.0");
.version(version);

program
.addCommand(init)
Expand Down
142 changes: 71 additions & 71 deletions packages/client/package.json
Original file line number Diff line number Diff line change
@@ -1,73 +1,73 @@
{
"name": "@elizaos/client",
"version": "1.0.0-alpha.9",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"extract-version": "bash ./version.sh",
"start:client": "bun run extract-version && vite",
"dev:client": "bun run extract-version && vite",
"build": "bun run extract-version && tsc -b && vite build",
"preview": "vite preview",
"lint": "biome check ./src --config-path=./ --apply-unsafe && biome format ./ --config-path=./ --write"
},
"dependencies": {
"@elizaos/core": "workspace:*",
"@radix-ui/react-avatar": "^1.1.3",
"@radix-ui/react-collapsible": "^1.1.3",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-scroll-area": "^1.2.3",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-separator": "^1.1.2",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-toast": "^1.2.6",
"@radix-ui/react-tooltip": "^1.1.8",
"@react-spring/web": "^9.7.5",
"@tanstack/react-query": "^5.67.2",
"@uidotdev/usehooks": "^2.4.1",
"class-variance-authority": "^0.7.1",
"clsx": "2.1.1",
"cmdk": "^1.0.4",
"date-fns": "^4.1.0",
"dayjs": "^1.11.13",
"lucide-react": "^0.469.0",
"react": "^19.0.0",
"react-aiwriter": "^1.0.0",
"react-dom": "^19.0.0",
"react-router": "^7.3.0",
"react-router-dom": "^7.3.0",
"semver": "^7.7.1",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"vite-plugin-compression": "^0.5.1"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@types/node": "^22.13.10",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "8.26.0",
"@typescript-eslint/parser": "8.26.0",
"@vitejs/plugin-react-swc": "^3.8.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.22.0",
"eslint-import-resolver-typescript": "^3.8.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^15.15.0",
"postcss": "^8.5.3",
"rollup-plugin-visualizer": "^5.14.0",
"tailwindcss": "^3.4.17",
"typescript": "5.8.2",
"typescript-eslint": "^8.26.0",
"vite": "^6.2.1",
"vite-tsconfig-paths": "^5.1.4"
}
"name": "@elizaos/client",
"version": "1.0.0-alpha.9",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"extract-version": "bash ./version.sh",
"start:client": "bun run extract-version && vite",
"dev:client": "bun run extract-version && vite",
"build": "bun run extract-version && tsc -b && vite build",
"preview": "vite preview",
"lint": "biome check ./src --config-path=./ --apply-unsafe && biome format ./ --config-path=./ --write"
},
"dependencies": {
"@elizaos/core": "workspace:*",
"@radix-ui/react-avatar": "^1.1.3",
"@radix-ui/react-collapsible": "^1.1.3",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-scroll-area": "^1.2.3",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-separator": "^1.1.2",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-toast": "^1.2.6",
"@radix-ui/react-tooltip": "^1.1.8",
"@react-spring/web": "^9.7.5",
"@tanstack/react-query": "^5.67.2",
"@uidotdev/usehooks": "^2.4.1",
"class-variance-authority": "^0.7.1",
"clsx": "2.1.1",
"cmdk": "^1.0.4",
"date-fns": "^4.1.0",
"dayjs": "^1.11.13",
"lucide-react": "^0.469.0",
"react": "^19.0.0",
"react-aiwriter": "^1.0.0",
"react-dom": "^19.0.0",
"react-router": "^7.3.0",
"react-router-dom": "^7.3.0",
"semver": "^7.7.1",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"vite-plugin-compression": "^0.5.1"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@types/node": "^22.13.10",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "8.26.0",
"@typescript-eslint/parser": "8.26.0",
"@vitejs/plugin-react-swc": "^3.8.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.22.0",
"eslint-import-resolver-typescript": "^3.8.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^15.15.0",
"postcss": "^8.5.3",
"rollup-plugin-visualizer": "^5.14.0",
"tailwindcss": "^3.4.17",
"typescript": "5.8.2",
"typescript-eslint": "^8.26.0",
"vite": "^6.2.1",
"vite-tsconfig-paths": "^5.1.4"
}
}
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@elizaos/core",
"version": "1.0.0-alpha.11",
"version": "1.0.0-alpha.12",
"description": "",
"type": "module",
"main": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/create-eliza/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-eliza",
"version": "1.0.0-alpha.11",
"version": "1.0.0-alpha.12",
"description": "Initialize an Eliza project",
"type": "module",
"publishConfig": {
Expand Down
4 changes: 2 additions & 2 deletions packages/plugin-anthropic/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@elizaos/plugin-anthropic",
"version": "1.0.0-alpha.11",
"version": "1.0.0-alpha.12",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
Expand All @@ -19,7 +19,7 @@
],
"dependencies": {
"@ai-sdk/anthropic": "^1.1.6",
"@elizaos/core": "^1.0.0-alpha.11",
"@elizaos/core": "^1.0.0-alpha.12",
"fastembed": "^1.0.0",
"tsup": "8.4.0",
"zod": "3.21.4"
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-discord/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@elizaos/plugin-discord",
"version": "1.0.0-alpha.11",
"version": "1.0.0-alpha.12",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
Expand Down
4 changes: 2 additions & 2 deletions packages/plugin-elevenlabs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@elizaos/plugin-elevenlabs",
"version": "1.0.0-alpha.11",
"version": "1.0.0-alpha.12",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
Expand All @@ -18,7 +18,7 @@
"dist"
],
"dependencies": {
"@elizaos/core": "^1.0.0-alpha.11",
"@elizaos/core": "^1.0.0-alpha.12",
"tsup": "8.4.0"
},
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions packages/plugin-local-ai/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@elizaos/plugin-local-ai",
"version": "1.0.0-alpha.11",
"version": "1.0.0-alpha.12",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
Expand All @@ -24,7 +24,7 @@
"@echogarden/espeak-ng-emscripten": "0.3.3",
"@echogarden/kissfft-wasm": "0.2.0",
"@echogarden/speex-resampler-wasm": "0.2.1",
"@elizaos/core": "^1.0.0-alpha.11",
"@elizaos/core": "^1.0.0-alpha.12",
"@huggingface/hub": "^1.0.1",
"@huggingface/inference": "^3.3.4",
"@huggingface/transformers": "^3.3.3",
Expand Down
4 changes: 2 additions & 2 deletions packages/plugin-node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@elizaos/plugin-node",
"version": "1.0.0-alpha.11",
"version": "1.0.0-alpha.12",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
Expand Down Expand Up @@ -28,7 +28,7 @@
"@echogarden/espeak-ng-emscripten": "0.3.3",
"@echogarden/kissfft-wasm": "0.2.0",
"@echogarden/speex-resampler-wasm": "0.2.1",
"@elizaos/core": "^1.0.0-alpha.11",
"@elizaos/core": "^1.0.0-alpha.12",
"@opendocsg/pdf2md": "0.1.32",
"@types/uuid": "10.0.0",
"alawmulaw": "6.0.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/plugin-openai/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@elizaos/plugin-openai",
"version": "1.0.0-alpha.11",
"version": "1.0.0-alpha.12",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
Expand All @@ -20,7 +20,7 @@
"dependencies": {
"@ai-sdk/openai": "^1.1.9",
"@ai-sdk/ui-utils": "1.1.9",
"@elizaos/core": "^1.0.0-alpha.11",
"@elizaos/core": "^1.0.0-alpha.12",
"ai": "^4.1.25",
"js-tiktoken": "^1.0.18",
"tsup": "8.4.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/plugin-solana/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@elizaos/plugin-solana",
"version": "1.0.0-alpha.11",
"version": "1.0.0-alpha.12",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
Expand All @@ -20,7 +20,7 @@
],
"dependencies": {
"@coral-xyz/anchor": "0.30.1",
"@elizaos/core": "^1.0.0-alpha.11",
"@elizaos/core": "^1.0.0-alpha.12",
"@solana/spl-token": "0.4.9",
"@solana/web3.js": "^1.98.0",
"bignumber.js": "9.1.2",
Expand Down
4 changes: 2 additions & 2 deletions packages/plugin-sql/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@elizaos/plugin-sql",
"version": "1.0.0-alpha.11",
"version": "1.0.0-alpha.12",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
Expand All @@ -23,7 +23,7 @@
],
"dependencies": {
"@electric-sql/pglite": "^0.2.17",
"@elizaos/core": "^1.0.0-alpha.11",
"@elizaos/core": "^1.0.0-alpha.12",
"@types/pg": "8.11.10",
"drizzle-kit": "^0.30.4",
"drizzle-orm": "^0.39.1",
Expand Down
4 changes: 2 additions & 2 deletions packages/plugin-starter/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@elizaos/plugin-starter",
"description": "Plugin starter for elizaOS",
"version": "1.0.0-alpha.11",
"version": "1.0.0-alpha.12",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
Expand All @@ -19,7 +19,7 @@
"dist"
],
"dependencies": {
"@elizaos/core": "^1.0.0-alpha.11",
"@elizaos/core": "^1.0.0-alpha.12",
"zod": "3.21.4"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/plugin-tee/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "@elizaos/plugin-tee",
"version": "1.0.0-alpha.11",
"version": "1.0.0-alpha.12",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"dependencies": {
"@elizaos/core": "^1.0.0-alpha.11",
"@elizaos/core": "^1.0.0-alpha.12",
"@phala/dstack-sdk": "^0.1.7",
"@solana/web3.js": "^1.98.0",
"better-sqlite3": "11.8.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-telegram/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@elizaos/plugin-telegram",
"version": "1.0.0-alpha.11",
"version": "1.0.0-alpha.12",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
Expand Down
4 changes: 2 additions & 2 deletions packages/plugin-twitter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@elizaos/plugin-twitter",
"version": "1.0.0-alpha.11",
"version": "1.0.0-alpha.12",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
Expand All @@ -19,7 +19,7 @@
"dist"
],
"dependencies": {
"@elizaos/core": "^1.0.0-alpha.11",
"@elizaos/core": "^1.0.0-alpha.12",
"@roamhq/wrtc": "^0.8.0",
"@sinclair/typebox": "^0.32.20",
"glob": "11.0.0",
Expand Down
Loading

0 comments on commit 0ea9a79

Please sign in to comment.