Skip to content

Commit 9371c12

Browse files
authoredNov 25, 2024··
Merge pull request #584 from ai16z/shaw/package-updates
feat: Update packages
2 parents 12c2213 + 1f1f1ac commit 9371c12

File tree

28 files changed

+585
-489
lines changed

28 files changed

+585
-489
lines changed
 

‎agent/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@
2626
"@ai16z/plugin-solana": "workspace:*",
2727
"@ai16z/plugin-starknet": "workspace:*",
2828
"@ai16z/plugin-coinbase": "workspace:*",
29-
"readline": "^1.3.0",
30-
"ws": "^8.18.0",
29+
"readline": "1.3.0",
30+
"ws": "8.18.0",
3131
"yargs": "17.7.2"
3232
},
3333
"devDependencies": {
3434
"ts-node": "10.9.2",
35-
"tsup": "^8.3.5"
35+
"tsup": "8.3.5"
3636
}
3737
}

‎client/package.json

+21-21
Original file line numberDiff line numberDiff line change
@@ -11,32 +11,32 @@
1111
},
1212
"dependencies": {
1313
"@ai16z/eliza": "workspace:*",
14-
"@radix-ui/react-slot": "^1.1.0",
15-
"class-variance-authority": "^0.7.0",
16-
"clsx": "2.1.0",
17-
"lucide-react": "^0.460.0",
18-
"react": "^18.3.1",
19-
"react-dom": "^18.3.1",
20-
"tailwind-merge": "^2.5.4",
21-
"tailwindcss-animate": "^1.0.7",
22-
"vite-plugin-top-level-await": "^1.4.4",
23-
"vite-plugin-wasm": "^3.3.0"
14+
"@radix-ui/react-slot": "1.1.0",
15+
"class-variance-authority": "0.7.0",
16+
"clsx": "2.1.1",
17+
"lucide-react": "0.460.0",
18+
"react": "18.3.1",
19+
"react-dom": "18.3.1",
20+
"tailwind-merge": "2.5.4",
21+
"tailwindcss-animate": "1.0.7",
22+
"vite-plugin-top-level-await": "1.4.4",
23+
"vite-plugin-wasm": "3.3.0"
2424
},
2525
"devDependencies": {
26-
"@eslint/js": "^9.13.0",
26+
"@eslint/js": "9.15.0",
2727
"@types/node": "22.8.4",
2828
"@types/react": "18.3.12",
2929
"@types/react-dom": "18.3.1",
30-
"@vitejs/plugin-react": "^4.3.3",
31-
"autoprefixer": "^10.4.20",
32-
"eslint": "^9.13.0",
33-
"eslint-plugin-react-hooks": "^5.0.0",
34-
"eslint-plugin-react-refresh": "^0.4.14",
35-
"globals": "^15.11.0",
36-
"postcss": "^8.4.49",
37-
"tailwindcss": "^3.4.15",
30+
"@vitejs/plugin-react": "4.3.3",
31+
"autoprefixer": "10.4.20",
32+
"eslint": "9.13.0",
33+
"eslint-plugin-react-hooks": "5.0.0",
34+
"eslint-plugin-react-refresh": "0.4.14",
35+
"globals": "15.12.0",
36+
"postcss": "8.4.49",
37+
"tailwindcss": "3.4.15",
3838
"typescript": "~5.6.2",
39-
"typescript-eslint": "^8.11.0",
40-
"vite": "^5.4.10"
39+
"typescript-eslint": "8.15.0",
40+
"vite": "5.4.11"
4141
}
4242
}

‎docs/api/interfaces/GenerationOptions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Configuration options for generating objects with a model.
3838

3939
### schema?
4040

41-
> `optional` **schema**: `ZodSchema`
41+
> `optional` **schema**: `ZodType`\<`any`, `ZodTypeDef`, `any`\>
4242
4343
#### Defined in
4444

‎docs/api/variables/CharacterSchema.md

+97-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,106 @@
22

33
# Variable: CharacterSchema
44

5-
> `const` **CharacterSchema**: `any`
5+
> `const` **CharacterSchema**: `ZodObject`\<`object`, `"strip"`, `ZodTypeAny`, `object`, `object`\>
66
77
Main Character schema
88

9+
## Type declaration
10+
11+
### id
12+
13+
> **id**: `ZodOptional`\<`ZodString`\>
14+
15+
### name
16+
17+
> **name**: `ZodString`
18+
19+
### system
20+
21+
> **system**: `ZodOptional`\<`ZodString`\>
22+
23+
### modelProvider
24+
25+
> **modelProvider**: `ZodNativeEnum`\<*typeof* [`ModelProviderName`](../enumerations/ModelProviderName.md)\>
26+
27+
### modelEndpointOverride
28+
29+
> **modelEndpointOverride**: `ZodOptional`\<`ZodString`\>
30+
31+
### templates
32+
33+
> **templates**: `ZodOptional`\<`ZodRecord`\<`ZodString`, `ZodString`\>\>
34+
35+
### bio
36+
37+
> **bio**: `ZodUnion`\<[`ZodString`, `ZodArray`\<`ZodString`, `"many"`\>]\>
38+
39+
### lore
40+
41+
> **lore**: `ZodArray`\<`ZodString`, `"many"`\>
42+
43+
### messageExamples
44+
45+
> **messageExamples**: `ZodArray`\<`ZodArray`\<`ZodObject`\<`object`, `"strip"`, `ZodTypeAny`, `object`, `object`\>, `"many"`\>, `"many"`\>
46+
47+
### postExamples
48+
49+
> **postExamples**: `ZodArray`\<`ZodString`, `"many"`\>
50+
51+
### people
52+
53+
> **people**: `ZodArray`\<`ZodString`, `"many"`\>
54+
55+
### topics
56+
57+
> **topics**: `ZodArray`\<`ZodString`, `"many"`\>
58+
59+
### adjectives
60+
61+
> **adjectives**: `ZodArray`\<`ZodString`, `"many"`\>
62+
63+
### knowledge
64+
65+
> **knowledge**: `ZodOptional`\<`ZodArray`\<`ZodString`, `"many"`\>\>
66+
67+
### clients
68+
69+
> **clients**: `ZodArray`\<`ZodNativeEnum`\<*typeof* [`Clients`](../enumerations/Clients.md)\>, `"many"`\>
70+
71+
### plugins
72+
73+
> **plugins**: `ZodArray`\<`ZodObject`\<`object`, `"strip"`, `ZodTypeAny`, `object`, `object`\>, `"many"`\>
74+
75+
### settings
76+
77+
> **settings**: `ZodOptional`\<`ZodObject`\<`object`, `"strip"`, `ZodTypeAny`, `object`, `object`\>\>
78+
79+
### clientConfig
80+
81+
> **clientConfig**: `ZodOptional`\<`ZodObject`\<`object`, `"strip"`, `ZodTypeAny`, `object`, `object`\>\>
82+
83+
### style
84+
85+
> **style**: `ZodObject`\<`object`, `"strip"`, `ZodTypeAny`, `object`, `object`\>
86+
87+
#### Type declaration
88+
89+
##### all
90+
91+
> **all**: `ZodArray`\<`ZodString`, `"many"`\>
92+
93+
##### chat
94+
95+
> **chat**: `ZodArray`\<`ZodString`, `"many"`\>
96+
97+
##### post
98+
99+
> **post**: `ZodArray`\<`ZodString`, `"many"`\>
100+
101+
### twitterProfile
102+
103+
> **twitterProfile**: `ZodOptional`\<`ZodObject`\<`object`, `"strip"`, `ZodTypeAny`, `object`, `object`\>\>
104+
9105
## Defined in
10106

11107
[packages/core/src/enviroment.ts:66](https://github.com/ai16z/eliza/blob/main/packages/core/src/enviroment.ts#L66)

‎docs/api/variables/envSchema.md

+33-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,42 @@
22

33
# Variable: envSchema
44

5-
> `const` **envSchema**: `any`
5+
> `const` **envSchema**: `ZodObject`\<`object`, `"strip"`, `ZodTypeAny`, `object`, `object`\>
66
77
TODO: TO COMPLETE
88

9+
## Type declaration
10+
11+
### OPENAI\_API\_KEY
12+
13+
> **OPENAI\_API\_KEY**: `ZodString`
14+
15+
API Keys with specific formats
16+
17+
### REDPILL\_API\_KEY
18+
19+
> **REDPILL\_API\_KEY**: `ZodString`
20+
21+
### GROK\_API\_KEY
22+
23+
> **GROK\_API\_KEY**: `ZodString`
24+
25+
### GROQ\_API\_KEY
26+
27+
> **GROQ\_API\_KEY**: `ZodString`
28+
29+
### OPENROUTER\_API\_KEY
30+
31+
> **OPENROUTER\_API\_KEY**: `ZodString`
32+
33+
### GOOGLE\_GENERATIVE\_AI\_API\_KEY
34+
35+
> **GOOGLE\_GENERATIVE\_AI\_API\_KEY**: `ZodString`
36+
37+
### ELEVENLABS\_XI\_API\_KEY
38+
39+
> **ELEVENLABS\_XI\_API\_KEY**: `ZodString`
40+
941
## Defined in
1042

1143
[packages/core/src/enviroment.ts:5](https://github.com/ai16z/eliza/blob/main/packages/core/src/enviroment.ts#L5)

‎docs/package.json

+13-13
Original file line numberDiff line numberDiff line change
@@ -15,26 +15,26 @@
1515
"write-heading-ids": "docusaurus write-heading-ids"
1616
},
1717
"dependencies": {
18-
"@docusaurus/core": "^3.6.0",
19-
"@docusaurus/plugin-content-blog": "^3.6.0",
20-
"@docusaurus/plugin-content-docs": "^3.6.0",
21-
"@docusaurus/plugin-ideal-image": "^3.6.0",
22-
"@docusaurus/preset-classic": "^3.6.0",
23-
"@docusaurus/theme-mermaid": "^3.6.0",
18+
"@docusaurus/core": "3.6.3",
19+
"@docusaurus/plugin-content-blog": "3.6.3",
20+
"@docusaurus/plugin-content-docs": "3.6.3",
21+
"@docusaurus/plugin-ideal-image": "3.6.3",
22+
"@docusaurus/preset-classic": "3.6.3",
23+
"@docusaurus/theme-mermaid": "3.6.3",
2424
"@mdx-js/react": "3.0.1",
25-
"clsx": "2.1.0",
26-
"docusaurus-lunr-search": "^3.5.0",
25+
"clsx": "2.1.1",
26+
"docusaurus-lunr-search": "3.5.0",
2727
"prism-react-renderer": "2.3.1",
2828
"react": "18.3.1",
2929
"react-dom": "18.3.1",
3030
"react-router-dom": "6.22.1"
3131
},
3232
"devDependencies": {
33-
"@docusaurus/module-type-aliases": "3.6.0",
34-
"@docusaurus/types": "3.6.0",
35-
"docusaurus-plugin-typedoc": "^1.0.5",
36-
"typedoc": "^0.26.11",
37-
"typedoc-plugin-markdown": "^4.2.9"
33+
"@docusaurus/module-type-aliases": "3.6.3",
34+
"@docusaurus/types": "3.6.3",
35+
"docusaurus-plugin-typedoc": "1.0.5",
36+
"typedoc": "0.26.11",
37+
"typedoc-plugin-markdown": "4.2.10"
3838
},
3939
"browserslist": {
4040
"production": [

‎package.json

+16-15
Original file line numberDiff line numberDiff line change
@@ -23,30 +23,31 @@
2323
"test": "bash ./scripts/test.sh"
2424
},
2525
"devDependencies": {
26-
"@commitlint/cli": "^18.4.4",
27-
"@commitlint/config-conventional": "^18.4.4",
28-
"concurrently": "^9.1.0",
29-
"lerna": "^8.1.5",
30-
"only-allow": "^1.2.1",
31-
"prettier": "^3.3.3",
32-
"typedoc": "^0.26.11",
26+
"lerna": "8.1.5",
27+
"only-allow": "1.2.1",
28+
"concurrently": "9.1.0",
29+
"husky": "9.1.7",
30+
"prettier": "3.3.3",
31+
"typedoc": "0.26.11",
3332
"typescript": "5.6.3",
34-
"vite": "^5.4.11",
35-
"vitest": "^2.1.5"
33+
"vite": "5.4.11",
34+
"vitest": "2.1.5",
35+
"@commitlint/cli": "18.6.1",
36+
"@commitlint/config-conventional": "18.6.3"
3637
},
3738
"pnpm": {
3839
"overrides": {
39-
"onnxruntime-node": "^1.20.0"
40+
"onnxruntime-node": "1.20.1"
4041
}
4142
},
4243
"engines": {
43-
"node": ">=22"
44+
"node": "23.3.0"
4445
},
4546
"dependencies": {
46-
"ollama-ai-provider": "^0.16.1",
47-
"optional": "^0.1.4",
48-
"sharp": "^0.33.5",
49-
"tslog": "^4.9.3"
47+
"ollama-ai-provider": "0.16.1",
48+
"optional": "0.1.4",
49+
"sharp": "0.33.5",
50+
"tslog": "4.9.3"
5051
},
5152
"packageManager": "pnpm@9.12.3+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee"
5253
}

‎packages/adapter-postgres/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
"types": "dist/index.d.ts",
77
"dependencies": {
88
"@ai16z/eliza": "workspace:*",
9-
"@types/pg": "^8.11.10",
10-
"pg": "^8.13.1"
9+
"@types/pg": "8.11.10",
10+
"pg": "8.13.1"
1111
},
1212
"devDependencies": {
1313
"eslint": "9.13.0",
1414
"eslint-config-prettier": "9.1.0",
1515
"eslint-plugin-prettier": "5.2.1",
1616
"eslint-plugin-vitest": "0.5.4",
17-
"tsup": "^8.3.5"
17+
"tsup": "8.3.5"
1818
},
1919
"scripts": {
2020
"build": "tsup --format esm --dts",

‎packages/adapter-sqlite/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"eslint-config-prettier": "9.1.0",
1616
"eslint-plugin-prettier": "5.2.1",
1717
"eslint-plugin-vitest": "0.5.4",
18-
"tsup": "^8.3.5"
18+
"tsup": "8.3.5"
1919
},
2020
"scripts": {
2121
"build": "tsup --format esm --dts",

‎packages/adapter-sqljs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"eslint-config-prettier": "9.1.0",
1616
"eslint-plugin-prettier": "5.2.1",
1717
"eslint-plugin-vitest": "0.5.4",
18-
"tsup": "^8.3.5"
18+
"tsup": "8.3.5"
1919
},
2020
"scripts": {
2121
"build": "tsup --format esm --dts",

‎packages/adapter-supabase/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"eslint-config-prettier": "9.1.0",
1414
"eslint-plugin-prettier": "5.2.1",
1515
"eslint-plugin-vitest": "0.5.4",
16-
"tsup": "^8.3.5"
16+
"tsup": "8.3.5"
1717
},
1818
"scripts": {
1919
"build": "tsup --format esm --dts",

‎packages/client-auto/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"eslint-config-prettier": "9.1.0",
2222
"eslint-plugin-prettier": "5.2.1",
2323
"eslint-plugin-vitest": "0.5.4",
24-
"tsup": "^8.3.5"
24+
"tsup": "8.3.5"
2525
},
2626
"scripts": {
2727
"build": "tsup --format esm --dts",

‎packages/client-direct/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212
"@types/express": "5.0.0",
1313
"body-parser": "1.20.3",
1414
"cors": "2.8.5",
15-
"express": "^4.21.1",
15+
"express": "4.21.1",
1616
"multer": "1.4.5-lts.1"
1717
},
1818
"devDependencies": {
1919
"eslint": "9.13.0",
2020
"eslint-config-prettier": "9.1.0",
2121
"eslint-plugin-prettier": "5.2.1",
2222
"eslint-plugin-vitest": "0.5.4",
23-
"tsup": "^8.3.5"
23+
"tsup": "8.3.5"
2424
},
2525
"scripts": {
2626
"build": "tsup --format esm --dts",

‎packages/client-discord/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"eslint-config-prettier": "9.1.0",
2121
"eslint-plugin-prettier": "5.2.1",
2222
"eslint-plugin-vitest": "0.5.4",
23-
"tsup": "^8.3.5"
23+
"tsup": "8.3.5"
2424
},
2525
"scripts": {
2626
"build": "tsup --format esm --dts",

0 commit comments

Comments
 (0)