-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 824 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 824 Bytes
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
{
"name": "simullm-workspace",
"version": "0.1.0",
"description": "Event-driven Agent-Based Modeling framework for TypeScript",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"test": "bun test",
"typecheck": "tsc --noEmit",
"dev:www": "bun --cwd apps/www dev",
"build:www": "bun --cwd apps/www build",
"dev:api": "bun --cwd apps/api dev",
"test:simullm": "bun --cwd packages/simullm test"
},
"keywords": [
"agent-based-modeling",
"simulation",
"typescript",
"event-driven",
"abm"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.0.0"
},
"dependencies": {
"@ai-sdk/react": "^2.0.11",
"ai": "^5.0.11",
"vercel": "^45.0.9",
"zod": "^4.0.17"
}
}