-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.18 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.18 KB
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
{
"name": "polygpt",
"version": "0.1.0",
"description": "An autonomous agent that learns new capabilities on-demand.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/polywrap/polygpt.git"
},
"main": "build/index.js",
"bin": {
"polygpt": "bin/polygpt"
},
"scripts": {
"start": "ts-node src/cli.ts",
"start:api": "ts-node src/api.ts",
"build": "rimraf build && tsc"
},
"dependencies": {
"@dqbd/tiktoken": "~1.0.7",
"@polywrap/client-js": "~0.11.0",
"@polywrap/file-system-plugin-js": "~0.10.0",
"@polywrap/plugin-js": "~0.11.0",
"@polywrap/result": "~0.11.0",
"@polywrap/sys-config-bundle-js": "~0.11.0",
"@polywrap/web3-config-bundle-js": "~0.11.0",
"agent-protocol": "^0.1.2",
"axios": "~1.4.0",
"chalk": "~4.1.2",
"clui": "~0.3.6",
"dotenv": "~16.3.1",
"ethers": "~5.7.2",
"figlet": "~1.6.0",
"openai": "~3.3.0",
"readline-sync": "~1.4.10"
},
"devDependencies": {
"@types/clui": "~0.3.1",
"@types/figlet": "~1.5.6",
"@types/node": "~20.4.2",
"readline": "~1.3.0",
"rimraf": "~5.0.1",
"ts-node": "~10.9.1",
"typescript": "~5.0.4"
}
}