drunken-chunk 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.
package/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # 💧 Drunken Chunk (drunken-chunk)
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/drunken-chunk.svg)](https://www.npmjs.com/package/drunken-chunk)
4
+ [![npm downloads](https://img.shields.io/npm/dm/drunken-chunk.svg)](https://www.npmjs.com/package/drunken-chunk)
3
5
  [![Python Version](https://img.shields.io/badge/python-3.8%2B-blue.svg)](https://www.python.org/)
4
6
  [![License](https://img.shields.io/badge/license-MIT-green.svg)](https://opensource.org/licenses/MIT)
5
7
  [![Platform](https://img.shields.io/badge/platform-windows%20%7C%20macos%20%7C%20linux-lightgrey.svg)](#-supported-platforms--native-mechanics)
@@ -53,27 +55,57 @@ Drunken Chunk is built to operate with lightweight, native OS components instead
53
55
  | 🍎 **macOS** | AppleScript `display notification` | `start_new_session` (`setsid`) background process | User Launch Agent (`~/Library/LaunchAgents/*.plist`) |
54
56
  | 🐧 **Linux** | Desktop D-Bus `notify-send` utility | `start_new_session` (`setsid`) background process | XDG Desktop Entry (`~/.config/autostart/*.desktop`) |
55
57
 
56
- ---
57
-
58
58
  ## 🚀 Installation & Quick Start
59
59
 
60
- ### Prerequisites
61
- * Python **3.8** or newer installed.
60
+ ### 📋 Prerequisites
61
+ * **Python 3.8+** installed (required for both installation methods; Drunken Chunk runs on pure Python).
62
+ * **Node.js 14.0+** installed (only if installing via **npm**).
62
63
  * Standard command-line terminal environment.
63
64
 
64
- ### Global Installation (Recommended)
65
- You can install Drunken Chunk in editable mode or globally from source. Open your terminal in this repository folder and run:
65
+ ---
66
+
67
+ ### 📦 Option A: Install via npm (Recommended for Node devs)
68
+ You can install Drunken Chunk globally using npm:
69
+
70
+ ```bash
71
+ npm install -g drunken-chunk
72
+ ```
73
+
74
+ Test your installation by running the global command:
75
+ ```bash
76
+ drunken-chunk --help
77
+ ```
78
+
79
+ You can also run it instantly without global installation using `npx`:
80
+ ```bash
81
+ npx drunken-chunk --help
82
+ ```
83
+
84
+ > [!NOTE]
85
+ > Since this is a Node.js wrapper for a Python tool, you must have Python 3.8+ installed on your system.
86
+
87
+ ---
66
88
 
89
+ ### 🐍 Option B: Install via pip (Recommended for Python devs)
90
+ Install the package directly from PyPI:
91
+
92
+ ```bash
93
+ pip install drunken-chunk
94
+ ```
95
+
96
+ Or install it globally/in editable mode from source:
67
97
  ```bash
68
98
  pip install -e .
69
99
  ```
70
100
 
71
- Once installed, the main command is linked globally. Test the installation by running:
101
+ Verify your installation:
72
102
  ```bash
73
103
  drunken-chunk --help
74
104
  ```
75
105
 
76
- ### Local Development & Source Running
106
+ ---
107
+
108
+ ### 🛠️ Option C: Run from Source (No installation)
77
109
  If you prefer not to install the package globally, you can invoke the CLI using the platform-specific execution wrappers located at the repository root:
78
110
 
79
111
  * **Windows PowerShell/Command Prompt:**
@@ -1,2 +1,2 @@
1
1
  # Drunken Chunk - Water reminder and behavior analytics tool
2
- __version__ = "1.0.0"
2
+ __version__ = "1.0.1"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "drunken-chunk",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "A beautiful, premium CLI water tracker, reminders & behavior analytics tool with cross-platform native desktop notifications.",
5
5
  "main": "bin/index.js",
6
6
  "bin": {