@invoicer/cli 1.1.1 → 1.1.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@invoicer/cli",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "Professional invoice generator with timesheet integration and CLI support",
5
5
  "homepage": "https://invoicer.inbrief.sh/",
6
6
  "repository": {
@@ -15,6 +15,11 @@
15
15
  "bin": {
16
16
  "invoicer": "./scripts/invoice.mjs"
17
17
  },
18
+ "files": [
19
+ "scripts/",
20
+ "dist/",
21
+ "README.md"
22
+ ],
18
23
  "scripts": {
19
24
  "build": "tsc -p tsconfig.json",
20
25
  "invoice": "npm run build && node scripts/invoice.mjs",
package/.env.example DELETED
@@ -1,15 +0,0 @@
1
- # SMTP Configuration for Email Sending
2
- # Copy this file to .env and fill in your details
3
-
4
- SMTP_HOST=smtp.gmail.com
5
- SMTP_PORT=465
6
- SMTP_USER=your@email.com
7
- SMTP_PASS=your_app_password
8
- INVOICE_FROM="Your Name <your@email.com>"
9
-
10
- # Gmail App Password Setup:
11
- # 1. Go to https://myaccount.google.com/security
12
- # 2. Enable 2-Factor Authentication
13
- # 3. Go to App Passwords: https://myaccount.google.com/apppasswords
14
- # 4. Create app password for "Mail" on "Other (Custom name)"
15
- # 5. Copy the 16-character password and use it as SMTP_PASS
package/config.json DELETED
@@ -1,19 +0,0 @@
1
- {
2
- "client": [
3
- {
4
- "address": "",
5
- "currency": "USD",
6
- "defaultRate": 40,
7
- "email": "miladezzat.f+dasix@gmail.com",
8
- "name": "Dasix Inc.",
9
- "payPeriodType": "Net 7"
10
- }
11
- ],
12
- "defaultDescription": "",
13
- "from": {
14
- "address": "Test",
15
- "email": "miladezzat.f@gmail.com",
16
- "name": "Milad"
17
- },
18
- "invoicePrefix": "INV"
19
- }
package/data/last.json DELETED
@@ -1,11 +0,0 @@
1
- {
2
- "clients": {
3
- "Dasix Inc.": {
4
- "lastHours": 34.56,
5
- "lastRate": 40,
6
- "seqByMonth": {
7
- "2026-02": 4
8
- }
9
- }
10
- }
11
- }