-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 918 Bytes
/
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
{
"name": "metagpt",
"version": "0.1.1",
"description": "The Multi-Agent Framework",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rimraf ./dist",
"start": "ts-node ./src/index.ts",
"test": "ts-node ./examples/simpleCoder.ts",
"build": "pnpm clean && tsup"
},
"keywords": [
"metagpt",
"agent"
],
"author": "jamielee",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.12.12",
"@types/uuid": "^9.0.8",
"dotenv": "^16.4.5",
"eslint": "^9.2.0",
"eslint-config-google": "^0.14.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@google/generative-ai": "^0.12.0",
"ollama": "^0.5.1",
"openai": "^4.47.1",
"uuid": "^9.0.1"
}
}