-
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) · 867 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 867 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": "gen-agent",
"version": "0.1.0",
"description": "A minimal reproduction of a production-grade AI Agent architecture for learning system-level design",
"type": "module",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js",
"default": "./dist/src/index.js"
}
},
"bin": {
"gen-agent": "dist/src/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"start": "node dist/cli.js",
"chat": "tsx src/cli.ts chat",
"example": "tsx examples/basic.ts"
},
"dependencies": {
"@mariozechner/pi-ai": "0.50.7",
"dotenv": "^17.3.1"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.21.0",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=20"
}
}