@irsyadulibad/servermon 1.0.0 → 1.0.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/cli.js +1 -2
  2. package/package.json +2 -2
package/cli.js CHANGED
@@ -1,3 +1,2 @@
1
1
  #!/usr/bin/env bun
2
- // Shim — npm requires .js for bin entries, Bun handles .ts imports
3
- import "./cli.ts";
2
+ await import("./cli.ts");
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@irsyadulibad/servermon",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Lightweight server monitoring daemon — collects system metrics and sends structured reports to Telegram. Built with Bun + TypeScript.",
5
5
  "module": "index.ts",
6
6
  "type": "module",
7
7
  "bin": {
8
- "servermon": "./cli.js"
8
+ "servermon": "./cli.ts"
9
9
  },
10
10
  "private": false,
11
11
  "scripts": {