@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 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> &middot;
16
17
  <a href="#instalación">Instalación</a> &middot;
17
18
  <a href="#cli">CLI</a> &middot;
18
19
  <a href="#archivo-de-configuración">Configuración</a> &middot;
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> &middot;
16
17
  <a href="#installation">Installation</a> &middot;
17
18
  <a href="#cli">CLI</a> &middot;
18
19
  <a href="#fichier-de-configuration">Configuration</a> &middot;
package/README.hi.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/">डॉक्स</a> &middot;
16
17
  <a href="#इंस्टॉल">इंस्टॉल</a> &middot;
17
18
  <a href="#cli">CLI</a> &middot;
18
19
  <a href="#कॉन्फ़िग-फ़ाइल">कॉन्फ़िग</a> &middot;
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> &middot;
16
17
  <a href="#installazione">Installazione</a> &middot;
17
18
  <a href="#cli">CLI</a> &middot;
18
19
  <a href="#file-di-configurazione">Configurazione</a> &middot;
package/README.ja.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/">ドキュメント</a> &middot;
16
17
  <a href="#インストール">インストール</a> &middot;
17
18
  <a href="#cli">CLI</a> &middot;
18
19
  <a href="#設定ファイル">設定</a> &middot;
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> &middot;
16
17
  <a href="#install">Install</a> &middot;
17
18
  <a href="#cli">CLI</a> &middot;
18
19
  <a href="#config-file">Config</a> &middot;
@@ -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> &middot;
16
17
  <a href="#instalação">Instalação</a> &middot;
17
18
  <a href="#cli">CLI</a> &middot;
18
19
  <a href="#arquivo-de-configuração">Configuração</a> &middot;
package/README.zh.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/">文档</a> &middot;
16
17
  <a href="#安装">安装</a> &middot;
17
18
  <a href="#cli">CLI</a> &middot;
18
19
  <a href="#配置文件">配置</a> &middot;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mcptoolshop/registry-stats",
3
- "version": "0.3.0",
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"