@mradex77/google-play-scraper 0.1.1 → 0.2.0
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 +109 -33
- package/dist/index.cjs +77 -14
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +77 -14
- package/dist/index.js.map +1 -1
- package/package.json +24 -3
package/package.json
CHANGED
|
@@ -1,17 +1,38 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mradex77/google-play-scraper",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Google Play scraper for Node.js with a fully typed TypeScript API. Fetch app details, search results, top charts, reviews, permissions and data safety from the Play Store.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"google-play",
|
|
7
7
|
"google-play-scraper",
|
|
8
|
+
"google-play-api",
|
|
8
9
|
"play-store",
|
|
10
|
+
"play-store-api",
|
|
11
|
+
"playstore",
|
|
9
12
|
"scraper",
|
|
13
|
+
"web-scraping",
|
|
10
14
|
"android",
|
|
15
|
+
"android-apps",
|
|
11
16
|
"app-store",
|
|
17
|
+
"app-data",
|
|
18
|
+
"app-reviews",
|
|
19
|
+
"reviews",
|
|
12
20
|
"aso",
|
|
13
|
-
"
|
|
21
|
+
"app-store-optimization",
|
|
22
|
+
"market-research",
|
|
23
|
+
"typescript",
|
|
24
|
+
"nodejs",
|
|
25
|
+
"zod"
|
|
14
26
|
],
|
|
27
|
+
"homepage": "https://github.com/MrAdex77/google-play-scraper#readme",
|
|
28
|
+
"repository": {
|
|
29
|
+
"type": "git",
|
|
30
|
+
"url": "git+https://github.com/MrAdex77/google-play-scraper.git"
|
|
31
|
+
},
|
|
32
|
+
"bugs": {
|
|
33
|
+
"url": "https://github.com/MrAdex77/google-play-scraper/issues"
|
|
34
|
+
},
|
|
35
|
+
"author": "MrAdex77 (https://github.com/MrAdex77)",
|
|
15
36
|
"license": "MIT",
|
|
16
37
|
"publishConfig": {
|
|
17
38
|
"access": "public"
|