first commit

This commit is contained in:
2025-01-20 23:58:11 +03:00
commit 1d307908c6
11 changed files with 713 additions and 0 deletions

36
package.json Normal file
View File

@@ -0,0 +1,36 @@
{
"name": "szbk-amazon-book-search",
"version": "1.1.0",
"description": "Allows searching for books on Amazon. To print the book description with gemini-ai you need an api key.",
"main": "index.js",
"scripts": {
"test": "mocha --reporter mocha-multi-reporters --reporter-options configFile=mocha-report-config.json"
},
"repository": {
"type": "git",
"url": ""
},
"author": "szbk",
"keywords": [
"amazon",
"book",
"isbn",
"search",
"library",
"api"
],
"license": "MIT",
"dependencies": {
"@google/generative-ai": "^0.8.0",
"axios": "^1.6.8",
"cheerio": "^1.0.0-rc.12",
"dotenv": "^16.4.5"
},
"devDependencies": {
"chai": "^5.1.2",
"mocha": "^11.0.1",
"mocha-junit-reporter": "^2.2.1",
"mocha-multi-reporters": "^1.5.1"
}
}