Skip to content

Commit 5e5fcae

Browse files
committed
v1.0.0-alpha.3
1 parent 8baa9a3 commit 5e5fcae

File tree

17 files changed

+101
-55
lines changed

17 files changed

+101
-55
lines changed

lerna.json

+14-9
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
{
2-
"version": "1.0.0-alpha.2",
3-
"packages": ["packages/*"],
4-
"npmClient": "bun",
5-
"command": {
6-
"publish": {
7-
"ignoreChanges": ["packages/docs", "packages/client"]
8-
}
9-
}
10-
}
2+
"version": "1.0.0-alpha.3",
3+
"packages": [
4+
"packages/*"
5+
],
6+
"npmClient": "bun",
7+
"command": {
8+
"publish": {
9+
"ignoreChanges": [
10+
"packages/docs",
11+
"packages/client"
12+
]
13+
}
14+
}
15+
}

packages/cli/package.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@elizaos/cli",
3-
"version": "1.0.0-alpha.2",
3+
"version": "1.0.0-alpha.3",
44
"description": "elizaOS CLI - Manage your AI agents and plugins",
55
"publishConfig": {
66
"access": "public"
@@ -15,7 +15,10 @@
1515
"url": "https://github.com/elizaOS/eliza.git",
1616
"directory": "packages/cli"
1717
},
18-
"files": ["dist", "templates"],
18+
"files": [
19+
"dist",
20+
"templates"
21+
],
1922
"keywords": [],
2023
"type": "module",
2124
"exports": {

packages/core/package.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@elizaos/core",
3-
"version": "1.0.0-alpha.2",
3+
"version": "1.0.0-alpha.3",
44
"description": "",
55
"type": "module",
66
"main": "dist/index.js",
@@ -16,7 +16,9 @@
1616
}
1717
}
1818
},
19-
"files": ["dist"],
19+
"files": [
20+
"dist"
21+
],
2022
"scripts": {
2123
"build": "tsup --format esm --dts",
2224
"watch": "tsc --watch",

packages/plugin-anthropic/package.json

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@elizaos/plugin-anthropic",
3-
"version": "1.0.0-alpha.2",
3+
"version": "1.0.0-alpha.3",
44
"type": "module",
55
"main": "dist/index.js",
66
"module": "dist/index.js",
@@ -14,10 +14,12 @@
1414
}
1515
}
1616
},
17-
"files": ["dist"],
17+
"files": [
18+
"dist"
19+
],
1820
"dependencies": {
1921
"@ai-sdk/anthropic": "^1.1.6",
20-
"@elizaos/core": "^1.0.0-alpha.2",
22+
"@elizaos/core": "^1.0.0-alpha.3",
2123
"fastembed": "^1.0.0",
2224
"tsup": "8.4.0",
2325
"zod": "3.21.4"

packages/plugin-discord/package.json

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@elizaos/plugin-discord",
3-
"version": "1.0.0-alpha.2",
3+
"version": "1.0.0-alpha.3",
44
"type": "module",
55
"main": "dist/index.js",
66
"module": "dist/index.js",
@@ -15,7 +15,9 @@
1515
}
1616
}
1717
},
18-
"files": ["dist"],
18+
"files": [
19+
"dist"
20+
],
1921
"dependencies": {
2022
"@discordjs/opus": "github:discordjs/opus",
2123
"@discordjs/rest": "2.4.0",
@@ -35,7 +37,10 @@
3537
"dev": "tsup --format esm --dts --watch",
3638
"test": "vitest run"
3739
},
38-
"trustedDependencies": ["@discordjs/opus", "@discordjs/voice"],
40+
"trustedDependencies": [
41+
"@discordjs/opus",
42+
"@discordjs/voice"
43+
],
3944
"peerDependencies": {
4045
"whatwg-url": "7.1.0"
4146
},

packages/plugin-elevenlabs/package.json

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@elizaos/plugin-elevenlabs",
3-
"version": "1.0.0-alpha.2",
3+
"version": "1.0.0-alpha.3",
44
"type": "module",
55
"main": "dist/index.js",
66
"module": "dist/index.js",
@@ -14,9 +14,11 @@
1414
}
1515
}
1616
},
17-
"files": ["dist"],
17+
"files": [
18+
"dist"
19+
],
1820
"dependencies": {
19-
"@elizaos/core": "^1.0.0-alpha.2",
21+
"@elizaos/core": "^1.0.0-alpha.3",
2022
"tsup": "8.4.0"
2123
},
2224
"scripts": {

packages/plugin-local-ai/package.json

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@elizaos/plugin-local-ai",
3-
"version": "1.0.0-alpha.2",
3+
"version": "1.0.0-alpha.3",
44
"type": "module",
55
"main": "dist/index.js",
66
"module": "dist/index.js",
@@ -14,7 +14,9 @@
1414
}
1515
}
1616
},
17-
"files": ["dist"],
17+
"files": [
18+
"dist"
19+
],
1820
"dependencies": {
1921
"@anush008/tokenizers": "^0.0.0",
2022
"@aws-sdk/client-s3": "^3.749.0",
@@ -23,7 +25,7 @@
2325
"@echogarden/espeak-ng-emscripten": "0.3.3",
2426
"@echogarden/kissfft-wasm": "0.2.0",
2527
"@echogarden/speex-resampler-wasm": "0.2.1",
26-
"@elizaos/core": "^1.0.0-alpha.2",
28+
"@elizaos/core": "^1.0.0-alpha.3",
2729
"@huggingface/hub": "^1.0.1",
2830
"@huggingface/inference": "^3.3.4",
2931
"@huggingface/transformers": "^3.3.3",

packages/plugin-node/package.json

+12-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@elizaos/plugin-node",
3-
"version": "1.0.0-alpha.2",
3+
"version": "1.0.0-alpha.3",
44
"type": "module",
55
"main": "dist/index.js",
66
"module": "dist/index.js",
@@ -15,15 +15,21 @@
1515
}
1616
}
1717
},
18-
"files": ["dist", "scripts", "package.json", "LICENSE", "tsup.config.ts"],
18+
"files": [
19+
"dist",
20+
"scripts",
21+
"package.json",
22+
"LICENSE",
23+
"tsup.config.ts"
24+
],
1925
"dependencies": {
2026
"@aws-sdk/client-s3": "^3.705.0",
2127
"@aws-sdk/s3-request-presigner": "^3.705.0",
2228
"@cliqz/adblocker-playwright": "1.34.0",
2329
"@echogarden/espeak-ng-emscripten": "0.3.3",
2430
"@echogarden/kissfft-wasm": "0.2.0",
2531
"@echogarden/speex-resampler-wasm": "0.2.1",
26-
"@elizaos/core": "^1.0.0-alpha.2",
32+
"@elizaos/core": "^1.0.0-alpha.3",
2733
"@opendocsg/pdf2md": "0.1.32",
2834
"@types/uuid": "10.0.0",
2935
"alawmulaw": "6.0.0",
@@ -71,7 +77,9 @@
7177
"yargs": "17.7.2",
7278
"youtube-dl-exec": "3.0.15"
7379
},
74-
"trustedDependencies": ["youtube-dl-exec"],
80+
"trustedDependencies": [
81+
"youtube-dl-exec"
82+
],
7583
"devDependencies": {
7684
"@types/node": "22.8.4",
7785
"tsup": "8.4.0"

packages/plugin-openai/package.json

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@elizaos/plugin-openai",
3-
"version": "1.0.0-alpha.2",
3+
"version": "1.0.0-alpha.3",
44
"type": "module",
55
"main": "dist/index.js",
66
"module": "dist/index.js",
@@ -14,11 +14,13 @@
1414
}
1515
}
1616
},
17-
"files": ["dist"],
17+
"files": [
18+
"dist"
19+
],
1820
"dependencies": {
1921
"@ai-sdk/openai": "^1.1.9",
2022
"@ai-sdk/ui-utils": "1.1.9",
21-
"@elizaos/core": "^1.0.0-alpha.2",
23+
"@elizaos/core": "^1.0.0-alpha.3",
2224
"ai": "^4.1.25",
2325
"js-tiktoken": "^1.0.18",
2426
"tsup": "8.4.0",

packages/plugin-solana/package.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@elizaos/plugin-solana",
3-
"version": "1.0.0-alpha.2",
3+
"version": "1.0.0-alpha.3",
44
"type": "module",
55
"main": "dist/index.js",
66
"module": "dist/index.js",
@@ -15,7 +15,9 @@
1515
}
1616
}
1717
},
18-
"files": ["dist"],
18+
"files": [
19+
"dist"
20+
],
1921
"dependencies": {
2022
"@coral-xyz/anchor": "0.30.1",
2123
"@elizaos/core": "workspace:*",

packages/plugin-sql/package.json

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@elizaos/plugin-sql",
3-
"version": "1.0.0-alpha.2",
3+
"version": "1.0.0-alpha.3",
44
"type": "module",
55
"main": "dist/index.js",
66
"module": "dist/index.js",
@@ -18,10 +18,12 @@
1818
}
1919
}
2020
},
21-
"files": ["dist"],
21+
"files": [
22+
"dist"
23+
],
2224
"dependencies": {
2325
"@electric-sql/pglite": "^0.2.17",
24-
"@elizaos/core": "^1.0.0-alpha.2",
26+
"@elizaos/core": "^1.0.0-alpha.3",
2527
"@types/pg": "8.11.10",
2628
"drizzle-kit": "^0.30.4",
2729
"drizzle-orm": "^0.39.1",

packages/plugin-starter/package.json

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@elizaos/plugin-starter",
33
"description": "Plugin starter for elizaOS",
4-
"version": "1.0.0-alpha.2",
4+
"version": "1.0.0-alpha.3",
55
"type": "module",
66
"main": "dist/index.js",
77
"module": "dist/index.js",
@@ -15,9 +15,11 @@
1515
}
1616
}
1717
},
18-
"files": ["dist"],
18+
"files": [
19+
"dist"
20+
],
1921
"dependencies": {
20-
"@elizaos/core": "^1.0.0-alpha.2",
22+
"@elizaos/core": "^1.0.0-alpha.3",
2123
"zod": "3.21.4"
2224
},
2325
"devDependencies": {

packages/plugin-tee/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "@elizaos/plugin-tee",
3-
"version": "1.0.0-alpha.2",
3+
"version": "1.0.0-alpha.3",
44
"main": "dist/index.js",
55
"type": "module",
66
"types": "dist/index.d.ts",
77
"dependencies": {
8-
"@elizaos/core": "^1.0.0-alpha.2",
8+
"@elizaos/core": "^1.0.0-alpha.3",
99
"@phala/dstack-sdk": "^0.1.7",
1010
"@solana/web3.js": "^1.98.0",
1111
"better-sqlite3": "11.8.1",

packages/plugin-telegram/package.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@elizaos/plugin-telegram",
3-
"version": "1.0.0-alpha.2",
3+
"version": "1.0.0-alpha.3",
44
"type": "module",
55
"main": "dist/index.js",
66
"module": "dist/index.js",
@@ -15,7 +15,9 @@
1515
}
1616
}
1717
},
18-
"files": ["dist"],
18+
"files": [
19+
"dist"
20+
],
1921
"dependencies": {
2022
"@telegraf/types": "7.1.0",
2123
"telegraf": "4.16.3"

packages/plugin-twitter/package.json

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@elizaos/plugin-twitter",
3-
"version": "1.0.0-alpha.2",
3+
"version": "1.0.0-alpha.3",
44
"type": "module",
55
"main": "dist/index.js",
66
"module": "dist/index.js",
@@ -15,9 +15,11 @@
1515
}
1616
}
1717
},
18-
"files": ["dist"],
18+
"files": [
19+
"dist"
20+
],
1921
"dependencies": {
20-
"@elizaos/core": "^1.0.0-alpha.2",
22+
"@elizaos/core": "^1.0.0-alpha.3",
2123
"@roamhq/wrtc": "^0.8.0",
2224
"@sinclair/typebox": "^0.32.20",
2325
"glob": "11.0.0",

packages/project-starter/package.json

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@elizaos/project-starter",
33
"description": "Project starter for elizaOS",
4-
"version": "1.0.0-alpha.2",
4+
"version": "1.0.0-alpha.3",
55
"type": "module",
66
"main": "dist/index.js",
77
"module": "dist/index.js",
@@ -15,9 +15,11 @@
1515
}
1616
}
1717
},
18-
"files": ["dist"],
18+
"files": [
19+
"dist"
20+
],
1921
"dependencies": {
20-
"@elizaos/core": "^1.0.0-alpha.2",
22+
"@elizaos/core": "^1.0.0-alpha.3",
2123
"zod": "3.21.4"
2224
},
2325
"devDependencies": {

0 commit comments

Comments
 (0)