-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
61 lines (61 loc) · 1.87 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
{
"name": "argos",
"version": "1.0.0",
"description": "ArgOS is a powerful Entity-Component-System (ECS) based framework for simulating intelligent agents in complex environments. Built on BitECS, it provides a flexible, performant foundation for creating realistic agent-based simulations.",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"start": "tsx src/examples/basic-conversation.ts",
"dev": "concurrently \"npm run dev:debug\" \"vite src/client\"",
"dev:server": "tsx watch src/server/index.ts",
"dev:debug": "tsx watch --inspect src/server/index.ts",
"debug:brk": "tsx --inspect-brk src/server/index.ts",
"build": "vite build src/client",
"test": "jest"
},
"author": "",
"license": "ISC",
"dependencies": {
"@ai-sdk/google": "^1.0.1",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/ws": "^8.5.13",
"ai": "^4.0.2",
"bitecs": "github:NateTheGreatt/bitecs#rc-0-4-0",
"chalk": "^5.3.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-force-graph": "^1.45.2",
"react-force-graph-2d": "^1.26.1",
"react-resizable-panels": "^2.1.7",
"react-router-dom": "^6.28.0",
"uuid": "^11.0.3",
"ws": "^8.18.0",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.23.5",
"zustand": "^5.0.1"
},
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"concurrently": "^8.2.2",
"jest": "^29.0.0",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.15",
"ts-jest": "^29.0.0",
"tsx": "^4.19.2",
"vite": "^5.1.4"
},
"type": "module"
}