auto-gpt-ts
Version:
my take of Auto-GPT in typescript
64 lines (63 loc) • 1.68 kB
JSON
{
"name": "auto-gpt-ts",
"version": "0.0.3",
"description": "my take of Auto-GPT in typescript",
"keywords": [
"AutoGPT",
"gpt-3",
"gpt-4",
"auto-gpt",
"auto-gpt-ts",
"gpt",
"gpt-typescript",
"auto-gpt-typescript",
"openai"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tuvia-r/auto-GPT-ts.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf dist tsc",
"start": "rm -rf dist && tsc && node dist/cli.js",
"start:continuous": "rm -rf dist && tsc && node dist/cli.js --continuous",
"start:debug": "rm -rf dist && tsc && node dist/cli.js --debug",
"dev": "ts-node src/cli.ts",
"watch": "tsc -w",
"lint": "eslint . --ext .ts",
"clean": "rm -rf dist && rm -rf logs && rm -rf auto_gpt_workspace"
},
"author": "tuviarumpler@gmail.com",
"license": "MIT",
"dependencies": {
"ajv": "^8.12.0",
"axios": "^1.4.0",
"chalk": "^2.4.2",
"chardet": "^1.5.1",
"commander": "^10.0.1",
"dotenv": "^16.0.3",
"duck-duck-scrape": "^2.2.3",
"gpt-3-encoder": "^1.1.4",
"iconv-lite": "^0.6.3",
"js-yaml": "^4.1.0",
"mathjs": "^11.8.0",
"node-html-parser": "^6.1.5",
"openai": "^3.2.1",
"ora": "^5.4.1",
"prompt": "^1.3.0",
"puppeteer": "^20.1.1",
"sentence-splitter": "^4.2.0",
"simple-git": "^3.18.0",
"vm2": "^3.9.17"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/js-yaml": "^4.0.5",
"@types/node": "^20.1.0",
"reflect-metadata": "^0.1.13",
"typescript": "^5.0.4"
}
}