@mcptoolshop/registry-stats 0.3.0 → 0.3.1
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.es.md +1 -0
- package/README.fr.md +1 -0
- package/README.hi.md +1 -0
- package/README.it.md +1 -0
- package/README.ja.md +1 -0
- package/README.md +9 -0
- package/README.pt-BR.md +1 -0
- package/README.zh.md +1 -0
- package/package.json +6 -2
package/README.es.md
CHANGED
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
</p>
|
|
14
14
|
|
|
15
15
|
<p align="center">
|
|
16
|
+
<a href="https://mcp-tool-shop-org.github.io/registry-stats/">Docs</a> ·
|
|
16
17
|
<a href="#instalación">Instalación</a> ·
|
|
17
18
|
<a href="#cli">CLI</a> ·
|
|
18
19
|
<a href="#archivo-de-configuración">Configuración</a> ·
|
package/README.fr.md
CHANGED
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
</p>
|
|
14
14
|
|
|
15
15
|
<p align="center">
|
|
16
|
+
<a href="https://mcp-tool-shop-org.github.io/registry-stats/">Docs</a> ·
|
|
16
17
|
<a href="#installation">Installation</a> ·
|
|
17
18
|
<a href="#cli">CLI</a> ·
|
|
18
19
|
<a href="#fichier-de-configuration">Configuration</a> ·
|
package/README.hi.md
CHANGED
package/README.it.md
CHANGED
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
</p>
|
|
14
14
|
|
|
15
15
|
<p align="center">
|
|
16
|
+
<a href="https://mcp-tool-shop-org.github.io/registry-stats/">Docs</a> ·
|
|
16
17
|
<a href="#installazione">Installazione</a> ·
|
|
17
18
|
<a href="#cli">CLI</a> ·
|
|
18
19
|
<a href="#file-di-configurazione">Configurazione</a> ·
|
package/README.ja.md
CHANGED
package/README.md
CHANGED
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
</p>
|
|
14
14
|
|
|
15
15
|
<p align="center">
|
|
16
|
+
<a href="https://mcp-tool-shop-org.github.io/registry-stats/">Docs</a> ·
|
|
16
17
|
<a href="#install">Install</a> ·
|
|
17
18
|
<a href="#cli">CLI</a> ·
|
|
18
19
|
<a href="#config-file">Config</a> ·
|
|
@@ -234,6 +235,14 @@ registerProvider(cargo);
|
|
|
234
235
|
await stats('cargo', 'serde');
|
|
235
236
|
```
|
|
236
237
|
|
|
238
|
+
## Website
|
|
239
|
+
|
|
240
|
+
Docs / landing page lives in `site/`.
|
|
241
|
+
|
|
242
|
+
- Dev: `npm run site:dev`
|
|
243
|
+
- Build: `npm run site:build`
|
|
244
|
+
- Preview: `npm run site:preview`
|
|
245
|
+
|
|
237
246
|
## License
|
|
238
247
|
|
|
239
248
|
MIT
|
package/README.pt-BR.md
CHANGED
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
</p>
|
|
14
14
|
|
|
15
15
|
<p align="center">
|
|
16
|
+
<a href="https://mcp-tool-shop-org.github.io/registry-stats/">Docs</a> ·
|
|
16
17
|
<a href="#instalação">Instalação</a> ·
|
|
17
18
|
<a href="#cli">CLI</a> ·
|
|
18
19
|
<a href="#arquivo-de-configuração">Configuração</a> ·
|
package/README.zh.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mcptoolshop/registry-stats",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "Multi-registry download stats for npm, PyPI, NuGet, VS Code Marketplace, and Docker Hub",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -31,7 +31,10 @@
|
|
|
31
31
|
"build": "tsup",
|
|
32
32
|
"test": "vitest run",
|
|
33
33
|
"test:watch": "vitest",
|
|
34
|
-
"prepublishOnly": "npm run build"
|
|
34
|
+
"prepublishOnly": "npm run build",
|
|
35
|
+
"site:dev": "npm --prefix site run dev",
|
|
36
|
+
"site:build": "npm --prefix site run build",
|
|
37
|
+
"site:preview": "npm --prefix site run preview"
|
|
35
38
|
},
|
|
36
39
|
"keywords": [
|
|
37
40
|
"npm",
|
|
@@ -46,6 +49,7 @@
|
|
|
46
49
|
],
|
|
47
50
|
"author": "mcp-tool-shop",
|
|
48
51
|
"license": "MIT",
|
|
52
|
+
"homepage": "https://mcp-tool-shop-org.github.io/registry-stats/",
|
|
49
53
|
"repository": {
|
|
50
54
|
"type": "git",
|
|
51
55
|
"url": "https://github.com/mcp-tool-shop-org/registry-stats.git"
|