- Introduces a new script to discover categories and identify products with high monthly sales volume. - Filters candidates based on sellability status and a configurable monthly sold threshold. - Enriches product data with Keepa and SP-API metrics before performing LLM-based analysis. - Persists results to SQLite and includes unit tests for the core processing logic.
30 lines
739 B
JSON
30 lines
739 B
JSON
{
|
|
"name": "asin-check",
|
|
"module": "src/index.ts",
|
|
"type": "module",
|
|
"private": true,
|
|
"scripts": {
|
|
"bestsellers": "bun run src/bestsellers-by-category.ts",
|
|
"monthly-sold": "bun run src/top-monthly-sold-by-category.ts",
|
|
"start": "bun run src/index.ts",
|
|
"start:web": "bun --hot src/server.ts",
|
|
"build:web": "bun build src/web/index.html --outdir dist",
|
|
"test": "bun test"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest",
|
|
"@types/react": "^19.2.14",
|
|
"@types/react-dom": "^19.2.3"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5"
|
|
},
|
|
"dependencies": {
|
|
"amazon-sp-api": "^1.2.1",
|
|
"ioredis": "^5.10.1",
|
|
"react": "^19.2.0",
|
|
"react-dom": "^19.2.0",
|
|
"xlsx": "^0.18.5"
|
|
}
|
|
}
|