amaprice 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -38,6 +38,10 @@ amaprice list
|
|
|
38
38
|
|
|
39
39
|
All commands support `--json` for machine-readable output.
|
|
40
40
|
|
|
41
|
+
## Community Price Database
|
|
42
|
+
|
|
43
|
+
amaprice contributes anonymized price data (product title, ASIN, price, and timestamp) to a shared database. This means every lookup helps build a broader price history that benefits all users — the more people use amaprice, the richer the tracking data becomes for everyone. No personal or device information is collected.
|
|
44
|
+
|
|
41
45
|
## Requirements
|
|
42
46
|
|
|
43
47
|
- Node.js >= 18
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "amaprice",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "CLI tool to scrape and track Amazon product prices",
|
|
5
5
|
"main": "src/scraper.js",
|
|
6
6
|
"type": "commonjs",
|
|
7
7
|
"bin": {
|
|
8
|
-
"amaprice": "
|
|
8
|
+
"amaprice": "bin/cli.js"
|
|
9
9
|
},
|
|
10
10
|
"scripts": {
|
|
11
11
|
"postinstall": "npx --yes playwright install chromium"
|