mirror of
https://github.com/eigent-ai/eigent.git
synced 2026-05-25 06:27:38 +00:00
30 lines
605 B
JSON
30 lines
605 B
JSON
{
|
|
"name": "@eigent/cli",
|
|
"version": "0.1.0",
|
|
"description": "Eigent AI coding agent CLI",
|
|
"type": "module",
|
|
"bin": {
|
|
"eigent": "./dist/index.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"start": "node dist/index.js"
|
|
},
|
|
"dependencies": {
|
|
"chalk": "^5.4.1",
|
|
"commander": "^13.1.0",
|
|
"dotenv": "^17.3.1",
|
|
"marked": "^15.0.7",
|
|
"marked-terminal": "^7.3.0",
|
|
"uuid": "^11.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.15.0",
|
|
"@types/uuid": "^10.0.0",
|
|
"typescript": "^5.7.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|