@elizaos/cli 1.5.8-alpha.7 ā 1.5.8-alpha.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commands/dev/actions/dev-server.d.ts.map +1 -1
- package/dist/commands/dev/types.d.ts +4 -0
- package/dist/commands/dev/types.d.ts.map +1 -1
- package/dist/commands/dev/utils/file-watcher.d.ts.map +1 -1
- package/dist/commands/scenario/index.d.ts.map +1 -1
- package/dist/commands/scenario/src/ConversationEvaluators.d.ts +36 -0
- package/dist/commands/scenario/src/ConversationEvaluators.d.ts.map +1 -0
- package/dist/commands/scenario/src/ConversationManager.d.ts +107 -0
- package/dist/commands/scenario/src/ConversationManager.d.ts.map +1 -0
- package/dist/commands/scenario/src/EnhancedEvaluationEngine.d.ts.map +1 -1
- package/dist/commands/scenario/src/EvaluationEngine.d.ts.map +1 -1
- package/dist/commands/scenario/src/LocalEnvironmentProvider.d.ts +2 -0
- package/dist/commands/scenario/src/LocalEnvironmentProvider.d.ts.map +1 -1
- package/dist/commands/scenario/src/TrajectoryReconstructor.d.ts.map +1 -1
- package/dist/commands/scenario/src/UserSimulator.d.ts +44 -0
- package/dist/commands/scenario/src/UserSimulator.d.ts.map +1 -0
- package/dist/commands/scenario/src/conversation-types.d.ts +138 -0
- package/dist/commands/scenario/src/conversation-types.d.ts.map +1 -0
- package/dist/commands/scenario/src/runtime-factory.d.ts +9 -3
- package/dist/commands/scenario/src/runtime-factory.d.ts.map +1 -1
- package/dist/commands/scenario/src/schema.d.ts +1464 -0
- package/dist/commands/scenario/src/schema.d.ts.map +1 -1
- package/dist/index.js +4253 -2979
- package/dist/index.js.map +20 -17
- package/dist/templates/plugin-quick-starter/build.ts +3 -3
- package/dist/templates/plugin-quick-starter/package.json +2 -2
- package/dist/templates/plugin-starter/build.ts +3 -3
- package/dist/templates/plugin-starter/package.json +2 -2
- package/dist/templates/project-starter/build.ts +3 -3
- package/dist/templates/project-starter/package.json +6 -6
- package/dist/templates/project-tee-starter/build.ts +3 -3
- package/dist/templates/project-tee-starter/package.json +4 -4
- package/dist/version.d.ts +2 -2
- package/dist/version.js +2 -2
- package/package.json +7 -7
- package/templates/plugin-quick-starter/build.ts +3 -3
- package/templates/plugin-quick-starter/package.json +2 -2
- package/templates/plugin-starter/build.ts +3 -3
- package/templates/plugin-starter/package.json +2 -2
- package/templates/project-starter/build.ts +3 -3
- package/templates/project-starter/package.json +6 -6
- package/templates/project-tee-starter/build.ts +3 -3
- package/templates/project-tee-starter/package.json +4 -4
|
@@ -16,14 +16,14 @@ async function cleanBuild(outdir = 'dist') {
|
|
|
16
16
|
|
|
17
17
|
async function build() {
|
|
18
18
|
const start = performance.now();
|
|
19
|
-
console.log('š Building plugin
|
|
19
|
+
console.log('š Building plugin...');
|
|
20
20
|
|
|
21
21
|
try {
|
|
22
22
|
// Clean previous build
|
|
23
23
|
await cleanBuild('dist');
|
|
24
24
|
|
|
25
25
|
// Run JavaScript build and TypeScript declarations in parallel
|
|
26
|
-
console.log('Starting
|
|
26
|
+
console.log('Starting build tasks...');
|
|
27
27
|
|
|
28
28
|
const [buildResult, tscResult] = await Promise.all([
|
|
29
29
|
// Task 1: Build with Bun
|
|
@@ -74,7 +74,7 @@ async function build() {
|
|
|
74
74
|
}
|
|
75
75
|
|
|
76
76
|
const elapsed = ((performance.now() - start) / 1000).toFixed(2);
|
|
77
|
-
console.log(
|
|
77
|
+
console.log(`ā
Build complete! (${elapsed}s)`);
|
|
78
78
|
return true;
|
|
79
79
|
} catch (error) {
|
|
80
80
|
console.error('Build error:', error);
|
|
@@ -39,11 +39,11 @@
|
|
|
39
39
|
"package.json"
|
|
40
40
|
],
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@elizaos/core": "1.5.8-alpha.
|
|
42
|
+
"@elizaos/core": "1.5.8-alpha.8",
|
|
43
43
|
"zod": "^3.24.4"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@elizaos/cli": "1.5.8-alpha.
|
|
46
|
+
"@elizaos/cli": "1.5.8-alpha.8",
|
|
47
47
|
"dotenv": "16.4.5",
|
|
48
48
|
"prettier": "3.5.3",
|
|
49
49
|
"typescript": "5.8.2"
|
|
@@ -16,14 +16,14 @@ async function cleanBuild(outdir = 'dist') {
|
|
|
16
16
|
|
|
17
17
|
async function build() {
|
|
18
18
|
const start = performance.now();
|
|
19
|
-
console.log('š Building plugin
|
|
19
|
+
console.log('š Building plugin...');
|
|
20
20
|
|
|
21
21
|
try {
|
|
22
22
|
// Clean previous build
|
|
23
23
|
await cleanBuild('dist');
|
|
24
24
|
|
|
25
25
|
// Run JavaScript build and TypeScript declarations in parallel
|
|
26
|
-
console.log('Starting
|
|
26
|
+
console.log('Starting build tasks...');
|
|
27
27
|
|
|
28
28
|
const [buildResult, tscResult] = await Promise.all([
|
|
29
29
|
// Task 1: Build with Bun
|
|
@@ -74,7 +74,7 @@ async function build() {
|
|
|
74
74
|
}
|
|
75
75
|
|
|
76
76
|
const elapsed = ((performance.now() - start) / 1000).toFixed(2);
|
|
77
|
-
console.log(
|
|
77
|
+
console.log(`ā
Build complete! (${elapsed}s)`);
|
|
78
78
|
return true;
|
|
79
79
|
} catch (error) {
|
|
80
80
|
console.error('Build error:', error);
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"package.json"
|
|
40
40
|
],
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@elizaos/core": "1.5.8-alpha.
|
|
42
|
+
"@elizaos/core": "1.5.8-alpha.8",
|
|
43
43
|
"@tanstack/react-query": "^5.80.7",
|
|
44
44
|
"clsx": "^2.1.1",
|
|
45
45
|
"tailwind-merge": "^3.3.1",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"zod": "3.24.2"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@elizaos/cli": "1.5.8-alpha.
|
|
51
|
+
"@elizaos/cli": "1.5.8-alpha.8",
|
|
52
52
|
"@tailwindcss/vite": "^4.1.10",
|
|
53
53
|
"@vitejs/plugin-react-swc": "^3.10.2",
|
|
54
54
|
"dotenv": "16.4.5",
|
|
@@ -16,14 +16,14 @@ async function cleanBuild(outdir = 'dist') {
|
|
|
16
16
|
|
|
17
17
|
async function build() {
|
|
18
18
|
const start = performance.now();
|
|
19
|
-
console.log('š Building project
|
|
19
|
+
console.log('š Building project...');
|
|
20
20
|
|
|
21
21
|
try {
|
|
22
22
|
// Clean previous build
|
|
23
23
|
await cleanBuild('dist');
|
|
24
24
|
|
|
25
25
|
// Run JavaScript build and TypeScript declarations in parallel
|
|
26
|
-
console.log('Starting
|
|
26
|
+
console.log('Starting build tasks...');
|
|
27
27
|
|
|
28
28
|
const [buildResult, tscResult] = await Promise.all([
|
|
29
29
|
// Task 1: Build with Bun
|
|
@@ -85,7 +85,7 @@ async function build() {
|
|
|
85
85
|
}
|
|
86
86
|
|
|
87
87
|
const elapsed = ((performance.now() - start) / 1000).toFixed(2);
|
|
88
|
-
console.log(
|
|
88
|
+
console.log(`ā
Build complete! (${elapsed}s)`);
|
|
89
89
|
return true;
|
|
90
90
|
} catch (error) {
|
|
91
91
|
console.error('Build error:', error);
|
|
@@ -27,12 +27,12 @@
|
|
|
27
27
|
"dist"
|
|
28
28
|
],
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@elizaos/cli": "1.5.8-alpha.
|
|
31
|
-
"@elizaos/client": "1.5.8-alpha.
|
|
32
|
-
"@elizaos/core": "1.5.8-alpha.
|
|
33
|
-
"@elizaos/plugin-bootstrap": "1.5.8-alpha.
|
|
34
|
-
"@elizaos/plugin-sql": "1.5.8-alpha.
|
|
35
|
-
"@elizaos/server": "1.5.8-alpha.
|
|
30
|
+
"@elizaos/cli": "1.5.8-alpha.8",
|
|
31
|
+
"@elizaos/client": "1.5.8-alpha.8",
|
|
32
|
+
"@elizaos/core": "1.5.8-alpha.8",
|
|
33
|
+
"@elizaos/plugin-bootstrap": "1.5.8-alpha.8",
|
|
34
|
+
"@elizaos/plugin-sql": "1.5.8-alpha.8",
|
|
35
|
+
"@elizaos/server": "1.5.8-alpha.8",
|
|
36
36
|
"@tanstack/react-query": "^5.29.0",
|
|
37
37
|
"clsx": "^2.1.1",
|
|
38
38
|
"react": "^18.3.1",
|
|
@@ -16,14 +16,14 @@ async function cleanBuild(outdir = 'dist') {
|
|
|
16
16
|
|
|
17
17
|
async function build() {
|
|
18
18
|
const start = performance.now();
|
|
19
|
-
console.log('š Building TEE project
|
|
19
|
+
console.log('š Building TEE project...');
|
|
20
20
|
|
|
21
21
|
try {
|
|
22
22
|
// Clean previous build
|
|
23
23
|
await cleanBuild('dist');
|
|
24
24
|
|
|
25
25
|
// Run JavaScript build and TypeScript declarations in parallel
|
|
26
|
-
console.log('Starting
|
|
26
|
+
console.log('Starting build tasks...');
|
|
27
27
|
|
|
28
28
|
const [buildResult, tscResult] = await Promise.all([
|
|
29
29
|
// Task 1: Build with Bun
|
|
@@ -85,7 +85,7 @@ async function build() {
|
|
|
85
85
|
}
|
|
86
86
|
|
|
87
87
|
const elapsed = ((performance.now() - start) / 1000).toFixed(2);
|
|
88
|
-
console.log(
|
|
88
|
+
console.log(`ā
Build complete! (${elapsed}s)`);
|
|
89
89
|
return true;
|
|
90
90
|
} catch (error) {
|
|
91
91
|
console.error('Build error:', error);
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"GUIDE.md"
|
|
33
33
|
],
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@elizaos/cli": "1.5.8-alpha.
|
|
36
|
-
"@elizaos/core": "1.5.8-alpha.
|
|
37
|
-
"@elizaos/plugin-bootstrap": "1.5.8-alpha.
|
|
35
|
+
"@elizaos/cli": "1.5.8-alpha.8",
|
|
36
|
+
"@elizaos/core": "1.5.8-alpha.8",
|
|
37
|
+
"@elizaos/plugin-bootstrap": "1.5.8-alpha.8",
|
|
38
38
|
"@elizaos/plugin-redpill": "1.2.1",
|
|
39
|
-
"@elizaos/plugin-sql": "1.5.8-alpha.
|
|
39
|
+
"@elizaos/plugin-sql": "1.5.8-alpha.8",
|
|
40
40
|
"@phala/dstack-sdk": "0.1.11",
|
|
41
41
|
"@solana/web3.js": "1.98.2",
|
|
42
42
|
"@tanstack/react-query": "^5.29.0",
|
package/dist/version.d.ts
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
* Generated at build time by generate-version.ts
|
|
4
4
|
* This file contains build-time constants to avoid runtime package.json resolution
|
|
5
5
|
*/
|
|
6
|
-
export declare const CLI_VERSION = "1.5.8-alpha.
|
|
6
|
+
export declare const CLI_VERSION = "1.5.8-alpha.8";
|
|
7
7
|
export declare const CLI_NAME = "@elizaos/cli";
|
|
8
8
|
export declare const CLI_DESCRIPTION = "elizaOS CLI - Manage your AI agents and plugins";
|
|
9
|
-
export declare const BUILD_TIME = "2025-09-
|
|
9
|
+
export declare const BUILD_TIME = "2025-09-05T17:29:13.587Z";
|
|
10
10
|
export declare const BUILD_ENV = "production";
|
|
11
11
|
declare const _default: {
|
|
12
12
|
version: string;
|
package/dist/version.js
CHANGED
|
@@ -4,12 +4,12 @@
|
|
|
4
4
|
* This file contains build-time constants to avoid runtime package.json resolution
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
export const CLI_VERSION = '1.5.8-alpha.
|
|
7
|
+
export const CLI_VERSION = '1.5.8-alpha.8';
|
|
8
8
|
export const CLI_NAME = '@elizaos/cli';
|
|
9
9
|
export const CLI_DESCRIPTION = 'elizaOS CLI - Manage your AI agents and plugins';
|
|
10
10
|
|
|
11
11
|
// Build metadata
|
|
12
|
-
export const BUILD_TIME = '2025-09-
|
|
12
|
+
export const BUILD_TIME = '2025-09-05T17:29:13.587Z';
|
|
13
13
|
export const BUILD_ENV = 'production';
|
|
14
14
|
|
|
15
15
|
// Export as default for convenience
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/cli",
|
|
3
|
-
"version": "1.5.8-alpha.
|
|
3
|
+
"version": "1.5.8-alpha.8",
|
|
4
4
|
"description": "elizaOS CLI - Manage your AI agents and plugins",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
@@ -74,16 +74,16 @@
|
|
|
74
74
|
"typescript": "5.8.3",
|
|
75
75
|
"vite": "^6.3.5"
|
|
76
76
|
},
|
|
77
|
-
"gitHead": "
|
|
77
|
+
"gitHead": "d0741e387d0621e47d6fe04ddf04d10021b17e1e",
|
|
78
78
|
"dependencies": {
|
|
79
79
|
"@anthropic-ai/claude-code": "^1.0.35",
|
|
80
80
|
"@anthropic-ai/sdk": "^0.54.0",
|
|
81
81
|
"@clack/prompts": "^0.11.0",
|
|
82
|
-
"@elizaos/api-client": "1.5.8-alpha.
|
|
83
|
-
"@elizaos/core": "1.5.8-alpha.
|
|
84
|
-
"@elizaos/plugin-bootstrap": "1.5.8-alpha.
|
|
85
|
-
"@elizaos/plugin-sql": "1.5.8-alpha.
|
|
86
|
-
"@elizaos/server": "1.5.8-alpha.
|
|
82
|
+
"@elizaos/api-client": "1.5.8-alpha.8",
|
|
83
|
+
"@elizaos/core": "1.5.8-alpha.8",
|
|
84
|
+
"@elizaos/plugin-bootstrap": "1.5.8-alpha.8",
|
|
85
|
+
"@elizaos/plugin-sql": "1.5.8-alpha.8",
|
|
86
|
+
"@elizaos/server": "1.5.8-alpha.8",
|
|
87
87
|
"bun": "^1.2.21",
|
|
88
88
|
"chalk": "^5.4.1",
|
|
89
89
|
"chokidar": "^4.0.3",
|
|
@@ -16,14 +16,14 @@ async function cleanBuild(outdir = 'dist') {
|
|
|
16
16
|
|
|
17
17
|
async function build() {
|
|
18
18
|
const start = performance.now();
|
|
19
|
-
console.log('š Building plugin
|
|
19
|
+
console.log('š Building plugin...');
|
|
20
20
|
|
|
21
21
|
try {
|
|
22
22
|
// Clean previous build
|
|
23
23
|
await cleanBuild('dist');
|
|
24
24
|
|
|
25
25
|
// Run JavaScript build and TypeScript declarations in parallel
|
|
26
|
-
console.log('Starting
|
|
26
|
+
console.log('Starting build tasks...');
|
|
27
27
|
|
|
28
28
|
const [buildResult, tscResult] = await Promise.all([
|
|
29
29
|
// Task 1: Build with Bun
|
|
@@ -74,7 +74,7 @@ async function build() {
|
|
|
74
74
|
}
|
|
75
75
|
|
|
76
76
|
const elapsed = ((performance.now() - start) / 1000).toFixed(2);
|
|
77
|
-
console.log(
|
|
77
|
+
console.log(`ā
Build complete! (${elapsed}s)`);
|
|
78
78
|
return true;
|
|
79
79
|
} catch (error) {
|
|
80
80
|
console.error('Build error:', error);
|
|
@@ -39,11 +39,11 @@
|
|
|
39
39
|
"package.json"
|
|
40
40
|
],
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@elizaos/core": "1.5.8-alpha.
|
|
42
|
+
"@elizaos/core": "1.5.8-alpha.8",
|
|
43
43
|
"zod": "^3.24.4"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@elizaos/cli": "1.5.8-alpha.
|
|
46
|
+
"@elizaos/cli": "1.5.8-alpha.8",
|
|
47
47
|
"dotenv": "16.4.5",
|
|
48
48
|
"prettier": "3.5.3",
|
|
49
49
|
"typescript": "5.8.2"
|
|
@@ -16,14 +16,14 @@ async function cleanBuild(outdir = 'dist') {
|
|
|
16
16
|
|
|
17
17
|
async function build() {
|
|
18
18
|
const start = performance.now();
|
|
19
|
-
console.log('š Building plugin
|
|
19
|
+
console.log('š Building plugin...');
|
|
20
20
|
|
|
21
21
|
try {
|
|
22
22
|
// Clean previous build
|
|
23
23
|
await cleanBuild('dist');
|
|
24
24
|
|
|
25
25
|
// Run JavaScript build and TypeScript declarations in parallel
|
|
26
|
-
console.log('Starting
|
|
26
|
+
console.log('Starting build tasks...');
|
|
27
27
|
|
|
28
28
|
const [buildResult, tscResult] = await Promise.all([
|
|
29
29
|
// Task 1: Build with Bun
|
|
@@ -74,7 +74,7 @@ async function build() {
|
|
|
74
74
|
}
|
|
75
75
|
|
|
76
76
|
const elapsed = ((performance.now() - start) / 1000).toFixed(2);
|
|
77
|
-
console.log(
|
|
77
|
+
console.log(`ā
Build complete! (${elapsed}s)`);
|
|
78
78
|
return true;
|
|
79
79
|
} catch (error) {
|
|
80
80
|
console.error('Build error:', error);
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"package.json"
|
|
40
40
|
],
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@elizaos/core": "1.5.8-alpha.
|
|
42
|
+
"@elizaos/core": "1.5.8-alpha.8",
|
|
43
43
|
"@tanstack/react-query": "^5.80.7",
|
|
44
44
|
"clsx": "^2.1.1",
|
|
45
45
|
"tailwind-merge": "^3.3.1",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"zod": "3.24.2"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@elizaos/cli": "1.5.8-alpha.
|
|
51
|
+
"@elizaos/cli": "1.5.8-alpha.8",
|
|
52
52
|
"@tailwindcss/vite": "^4.1.10",
|
|
53
53
|
"@vitejs/plugin-react-swc": "^3.10.2",
|
|
54
54
|
"dotenv": "16.4.5",
|
|
@@ -16,14 +16,14 @@ async function cleanBuild(outdir = 'dist') {
|
|
|
16
16
|
|
|
17
17
|
async function build() {
|
|
18
18
|
const start = performance.now();
|
|
19
|
-
console.log('š Building project
|
|
19
|
+
console.log('š Building project...');
|
|
20
20
|
|
|
21
21
|
try {
|
|
22
22
|
// Clean previous build
|
|
23
23
|
await cleanBuild('dist');
|
|
24
24
|
|
|
25
25
|
// Run JavaScript build and TypeScript declarations in parallel
|
|
26
|
-
console.log('Starting
|
|
26
|
+
console.log('Starting build tasks...');
|
|
27
27
|
|
|
28
28
|
const [buildResult, tscResult] = await Promise.all([
|
|
29
29
|
// Task 1: Build with Bun
|
|
@@ -85,7 +85,7 @@ async function build() {
|
|
|
85
85
|
}
|
|
86
86
|
|
|
87
87
|
const elapsed = ((performance.now() - start) / 1000).toFixed(2);
|
|
88
|
-
console.log(
|
|
88
|
+
console.log(`ā
Build complete! (${elapsed}s)`);
|
|
89
89
|
return true;
|
|
90
90
|
} catch (error) {
|
|
91
91
|
console.error('Build error:', error);
|
|
@@ -27,12 +27,12 @@
|
|
|
27
27
|
"dist"
|
|
28
28
|
],
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@elizaos/cli": "1.5.8-alpha.
|
|
31
|
-
"@elizaos/client": "1.5.8-alpha.
|
|
32
|
-
"@elizaos/core": "1.5.8-alpha.
|
|
33
|
-
"@elizaos/plugin-bootstrap": "1.5.8-alpha.
|
|
34
|
-
"@elizaos/plugin-sql": "1.5.8-alpha.
|
|
35
|
-
"@elizaos/server": "1.5.8-alpha.
|
|
30
|
+
"@elizaos/cli": "1.5.8-alpha.8",
|
|
31
|
+
"@elizaos/client": "1.5.8-alpha.8",
|
|
32
|
+
"@elizaos/core": "1.5.8-alpha.8",
|
|
33
|
+
"@elizaos/plugin-bootstrap": "1.5.8-alpha.8",
|
|
34
|
+
"@elizaos/plugin-sql": "1.5.8-alpha.8",
|
|
35
|
+
"@elizaos/server": "1.5.8-alpha.8",
|
|
36
36
|
"@tanstack/react-query": "^5.29.0",
|
|
37
37
|
"clsx": "^2.1.1",
|
|
38
38
|
"react": "^18.3.1",
|
|
@@ -16,14 +16,14 @@ async function cleanBuild(outdir = 'dist') {
|
|
|
16
16
|
|
|
17
17
|
async function build() {
|
|
18
18
|
const start = performance.now();
|
|
19
|
-
console.log('š Building TEE project
|
|
19
|
+
console.log('š Building TEE project...');
|
|
20
20
|
|
|
21
21
|
try {
|
|
22
22
|
// Clean previous build
|
|
23
23
|
await cleanBuild('dist');
|
|
24
24
|
|
|
25
25
|
// Run JavaScript build and TypeScript declarations in parallel
|
|
26
|
-
console.log('Starting
|
|
26
|
+
console.log('Starting build tasks...');
|
|
27
27
|
|
|
28
28
|
const [buildResult, tscResult] = await Promise.all([
|
|
29
29
|
// Task 1: Build with Bun
|
|
@@ -85,7 +85,7 @@ async function build() {
|
|
|
85
85
|
}
|
|
86
86
|
|
|
87
87
|
const elapsed = ((performance.now() - start) / 1000).toFixed(2);
|
|
88
|
-
console.log(
|
|
88
|
+
console.log(`ā
Build complete! (${elapsed}s)`);
|
|
89
89
|
return true;
|
|
90
90
|
} catch (error) {
|
|
91
91
|
console.error('Build error:', error);
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"GUIDE.md"
|
|
33
33
|
],
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@elizaos/cli": "1.5.8-alpha.
|
|
36
|
-
"@elizaos/core": "1.5.8-alpha.
|
|
37
|
-
"@elizaos/plugin-bootstrap": "1.5.8-alpha.
|
|
35
|
+
"@elizaos/cli": "1.5.8-alpha.8",
|
|
36
|
+
"@elizaos/core": "1.5.8-alpha.8",
|
|
37
|
+
"@elizaos/plugin-bootstrap": "1.5.8-alpha.8",
|
|
38
38
|
"@elizaos/plugin-redpill": "1.2.1",
|
|
39
|
-
"@elizaos/plugin-sql": "1.5.8-alpha.
|
|
39
|
+
"@elizaos/plugin-sql": "1.5.8-alpha.8",
|
|
40
40
|
"@phala/dstack-sdk": "0.1.11",
|
|
41
41
|
"@solana/web3.js": "1.98.2",
|
|
42
42
|
"@tanstack/react-query": "^5.29.0",
|