forked from elizaOS/eliza
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
87 lines (87 loc) · 2.58 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@elizaos/the-org",
"version": "1.0.0-beta.3",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "bun ../cli/dist/index.js start",
"build": "vite build && tsup",
"lint": "prettier --write ./src",
"dev": "bun ../cli/dist/index.js dev",
"test": "bun ../cli/dist/index.js test",
"clean": "rm -rf dist .turbo node_modules .turbo-tsconfig.json tsconfig.tsbuildinfo",
"format": "prettier --write ./src",
"format:check": "prettier --check ./src"
},
"nodemonConfig": {
"watch": [
"src",
"../core/dist"
],
"ext": "ts,json",
"exec": "node --enable-source-maps --loader ts-node/esm src/index.ts"
},
"dependencies": {
"@elizaos/cli": "^1.0.0-beta.3",
"@elizaos/core": "^1.0.0-beta.3",
"@elizaos/plugin-anthropic": "^1.0.0-beta.3",
"@elizaos/plugin-discord": "^1.0.0-beta.3",
"@elizaos/plugin-openai": "^1.0.0-beta.3",
"@elizaos/plugin-sql": "^1.0.0-beta.3",
"@elizaos/plugin-tee": "^1.0.0-beta.3",
"@elizaos/plugin-telegram": "^1.0.0-beta.3",
"@elizaos/plugin-twitter": "^1.0.0-beta.3",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.2",
"@solana/web3.js": "^1.87.6",
"@tanstack/react-query": "^5.64.2",
"@types/body-parser": "1.19.5",
"@types/cors": "2.8.17",
"@types/express": "5.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cors": "2.8.5",
"express": "4.21.1",
"lucide-react": "^0.473.0",
"minipass": "7.1.2",
"moment": "^2.30.1",
"multer": "1.4.5-lts.1",
"react": "^18.3.1",
"react-bubble-ui": "^1.1.2",
"react-dom": "^18.3.1",
"readline": "1.3.0",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"ts-node": "^10.9.2",
"typescript": "5.8.2",
"ws": "8.18.0",
"zod": "3.24.2"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/multer": "^1.4.12",
"@types/node": "^22.10.7",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.14.0",
"postcss": "^8.5.1",
"prettier": "3.5.3",
"tailwindcss": "^3.4.17",
"ts-node": "10.9.2",
"tsup": "8.4.0",
"typescript": "~5.6.2",
"typescript-eslint": "^8.18.2",
"vite": "^6.0.5"
},
"gitHead": "9834bbd06128356b44b091f022fc2a2d024a875e"
}