@elizaos/server 1.0.10
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/LICENSE +21 -0
- package/README.md +273 -0
- package/dist/index.d.ts +249 -0
- package/dist/index.js +6333 -0
- package/dist/index.js.map +1 -0
- package/package.json +69 -0
package/package.json
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@elizaos/server",
|
|
3
|
+
"version": "1.0.10",
|
|
4
|
+
"description": "ElizaOS Server - Core server infrastructure for ElizaOS agents",
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"access": "public",
|
|
7
|
+
"workspaces": {
|
|
8
|
+
"preserveIfPresent": true
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"author": {
|
|
13
|
+
"name": "elizaOS",
|
|
14
|
+
"url": "https://twitter.com/eliza_OS"
|
|
15
|
+
},
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "https://github.com/elizaOS/eliza.git",
|
|
19
|
+
"directory": "packages/server"
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"dist",
|
|
23
|
+
"templates"
|
|
24
|
+
],
|
|
25
|
+
"keywords": [],
|
|
26
|
+
"type": "module",
|
|
27
|
+
"exports": {
|
|
28
|
+
".": "./dist/index.js",
|
|
29
|
+
"./package.json": "./package.json"
|
|
30
|
+
},
|
|
31
|
+
"scripts": {
|
|
32
|
+
"build": "tsup",
|
|
33
|
+
"type-check": "tsc --project tsconfig.build.json --noEmit",
|
|
34
|
+
"lint": "prettier --write ./src",
|
|
35
|
+
"format": "prettier --write ./src",
|
|
36
|
+
"format:check": "prettier --check ./src",
|
|
37
|
+
"clean": "rm -rf dist .turbo node_modules .turbo-tsconfig.json tsconfig.tsbuildinfo",
|
|
38
|
+
"test": "bun test src/**/*.test.ts",
|
|
39
|
+
"test:unit": "bun test src/**/*.test.ts --exclude **/integration/**",
|
|
40
|
+
"test:integration": "bun test src/__tests__/integration/**/*.test.ts",
|
|
41
|
+
"test:coverage": "bun test --coverage",
|
|
42
|
+
"test:watch": "bun test --watch",
|
|
43
|
+
"test:cli": "bun test tests/commands/"
|
|
44
|
+
},
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"@types/node": "^24.0.1",
|
|
47
|
+
"dotenv": "^16.5.0",
|
|
48
|
+
"prettier": "3.5.3",
|
|
49
|
+
"tsup": "8.5.0",
|
|
50
|
+
"tsx": "4.19.4",
|
|
51
|
+
"typescript": "^5.5.4",
|
|
52
|
+
"which": "^4.0.0",
|
|
53
|
+
"ws": "^8.18.0"
|
|
54
|
+
},
|
|
55
|
+
"gitHead": "58b31ee11ea37a2d2dcba67c614f836387f13e67",
|
|
56
|
+
"dependencies": {
|
|
57
|
+
"@elizaos/core": "1.0.10",
|
|
58
|
+
"@elizaos/plugin-sql": "1.0.10",
|
|
59
|
+
"@types/express": "^5.0.2",
|
|
60
|
+
"@types/express-fileupload": "^1.5.1",
|
|
61
|
+
"@types/helmet": "^4.0.0",
|
|
62
|
+
"express": "^5.1.0",
|
|
63
|
+
"express-fileupload": "^1.5.1",
|
|
64
|
+
"express-rate-limit": "^7.5.0",
|
|
65
|
+
"helmet": "^8.1.0",
|
|
66
|
+
"path-to-regexp": "^8.2.0",
|
|
67
|
+
"socket.io": "^4.8.1"
|
|
68
|
+
}
|
|
69
|
+
}
|