Introduces the capability to resolve UPCs to ASINs using the Keepa API. This includes a new `upc-file` command for processing large Excel files of UPCs, a `upc` CLI tool for quick lookups, and API endpoints for web-based integration. The analysis pipeline was refactored into a reusable module to support both standard ASIN leads and new UPC-driven workflows.
33 lines
856 B
JSON
33 lines
856 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",
|
|
"upc": "bun run src/upc-lookup.ts",
|
|
"upc-file": "bun run src/upc-file-analysis.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",
|
|
"exceljs": "^4.4.0",
|
|
"ioredis": "^5.10.1",
|
|
"react": "^19.2.0",
|
|
"react-dom": "^19.2.0",
|
|
"xlsx": "^0.18.5"
|
|
}
|
|
}
|