feat: solution for 'Повторный экзамен #2: Сравнительный обзор 3 сущностей (Tavily)'

This commit is contained in:
2026-06-30 17:19:38 +03:00
parent 6f51bf4b64
commit 29e3e8ba1d
6 changed files with 201 additions and 58 deletions
+16 -6
View File
@@ -1,15 +1,25 @@
{
"name": "tavily-comparison",
"name": "tavily-comparative-review",
"version": "1.0.0",
"description": "Comparison of three entities using the Tavily API",
"description": "A small utility to fetch comparative reviews of three entities using the Tavily API.",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"test": "echo \"No tests defined\""
"test": "jest"
},
"keywords": [
"tavily",
"comparison",
"api",
"node"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"tavily-sdk": "^1.0.0",
"dotenv": "^16.0.0"
"axios": "^1.6.0",
"dotenv": "^16.4.5"
},
"devDependencies": {
"jest": "^29.7.0"
}
}