pkg-track 1.0.1 → 1.0.2

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 +9 -0
  2. package/package.json +7 -6
package/README.md CHANGED
@@ -41,10 +41,19 @@ Interactive CLI that scans your Gmail for shipping confirmations and lets you tr
41
41
 
42
42
  ### 1. Install
43
43
 
44
+ **From npm (recommended):**
44
45
  ```bash
45
46
  npm install -g pkg-track
46
47
  ```
47
48
 
49
+ **From git (for development):**
50
+ ```bash
51
+ # Requires build tools (python, make, gcc/clang)
52
+ npm install -g git+https://github.com/vvanessaww/pkg-track.git
53
+ ```
54
+
55
+ > ⚠️ **Installing from git requires build tools** for compiling native modules (better-sqlite3). On macOS, install Xcode Command Line Tools: `xcode-select --install`. On Ubuntu/Debian: `sudo apt-get install build-essential python3`
56
+
48
57
  ### 2. One-Time Gmail Setup (~5 minutes)
49
58
 
50
59
  **Quick Google Cloud setup** (sounds scary, but it's just clicking through):
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pkg-track",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Track all your packages in one place - UPS, FedEx, USPS, Amazon. Interactive CLI with Gmail integration.",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -8,7 +8,8 @@
8
8
  },
9
9
  "scripts": {
10
10
  "start": "node bin/cli.js",
11
- "test": "node test/parser.test.js"
11
+ "test": "node test/parser.test.js",
12
+ "install": "node -e \"console.log('Installing pkg-track...')\" || true"
12
13
  },
13
14
  "keywords": [
14
15
  "package",
@@ -42,12 +43,12 @@
42
43
  "node": ">=14.0.0"
43
44
  },
44
45
  "dependencies": {
46
+ "better-sqlite3": "^12.6.2",
47
+ "chalk": "^4.1.2",
45
48
  "commander": "^11.1.0",
46
49
  "googleapis": "^128.0.0",
47
- "better-sqlite3": "^9.2.2",
48
- "chalk": "^4.1.2",
49
- "ora": "^5.4.1",
50
50
  "inquirer": "^8.2.6",
51
- "open": "^8.4.2"
51
+ "open": "^8.4.2",
52
+ "ora": "^5.4.1"
52
53
  }
53
54
  }