@modern-admin/telemetry 0.1.0 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +25 -0
  2. package/package.json +14 -4
package/README.md ADDED
@@ -0,0 +1,25 @@
1
+ # @modern-admin/telemetry
2
+
3
+ [![npm version](https://img.shields.io/npm/v/@modern-admin/telemetry)](https://www.npmjs.com/package/@modern-admin/telemetry)
4
+ [![license](https://img.shields.io/npm/l/@modern-admin/telemetry)](https://github.com/modern-admin/modern-admin/blob/main/LICENSE)
5
+
6
+ > Opt-in usage telemetry for Modern Admin (privacy-first, MODERN_ADMIN_TELEMETRY=1 required).
7
+
8
+ Part of [**Modern Admin**](https://github.com/modern-admin/modern-admin) — a universal, modern admin panel framework
9
+ built on NestJS + React 19, with Prisma/Drizzle adapters, Tailwind 4 UI, and
10
+ end-to-end Zod validation.
11
+
12
+ ## Installation
13
+
14
+ ```sh
15
+ bun add @modern-admin/telemetry
16
+ ```
17
+
18
+ ## Documentation
19
+
20
+ Setup guides, architecture, and usage examples live in the
21
+ [Modern Admin README](https://github.com/modern-admin/modern-admin#readme).
22
+
23
+ ## License
24
+
25
+ [MIT](https://github.com/modern-admin/modern-admin/blob/main/LICENSE) © Modern Admin
package/package.json CHANGED
@@ -1,7 +1,17 @@
1
1
  {
2
2
  "name": "@modern-admin/telemetry",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Opt-in usage telemetry for Modern Admin (privacy-first, MODERN_ADMIN_TELEMETRY=1 required).",
5
+ "homepage": "https://github.com/modern-admin/modern-admin/tree/main/packages/telemetry#readme",
6
+ "keywords": [
7
+ "modern-admin",
8
+ "admin",
9
+ "admin-panel",
10
+ "admin-dashboard",
11
+ "telemetry",
12
+ "observability",
13
+ "logging"
14
+ ],
5
15
  "type": "module",
6
16
  "license": "MIT",
7
17
  "repository": {
@@ -34,11 +44,11 @@
34
44
  }
35
45
  },
36
46
  "peerDependencies": {
37
- "@modern-admin/core": "0.1.0"
47
+ "@modern-admin/core": "0.1.1"
38
48
  },
39
49
  "devDependencies": {
40
- "@modern-admin/core": "0.1.0",
41
- "@modern-admin/tsconfig": "0.1.0",
50
+ "@modern-admin/core": "0.1.1",
51
+ "@modern-admin/tsconfig": "0.1.1",
42
52
  "@types/bun": "^1.3.13",
43
53
  "typescript": "^6.0.3"
44
54
  }