jira-invoice 1.0.0 → 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.
package/README.es.md CHANGED
@@ -11,7 +11,16 @@ CLI interactivo para generar invoices PDF desde reportes de Jira Logged Time.
11
11
  ## Instalacion
12
12
 
13
13
  ```bash
14
- cd ~/workspace/invoice-generator
14
+ npm install -g jira-invoice
15
+ ```
16
+
17
+ Esto instala dos comandos: `jira-invoice` y su alias `invoice`.
18
+
19
+ ### Desde el codigo fuente
20
+
21
+ ```bash
22
+ git clone https://github.com/riclara/jira-invoice.git
23
+ cd jira-invoice
15
24
  npm install
16
25
  npm run build
17
26
  npm link
package/README.md CHANGED
@@ -11,7 +11,16 @@ Interactive CLI to generate PDF invoices from Jira Logged Time reports.
11
11
  ## Installation
12
12
 
13
13
  ```bash
14
- cd ~/workspace/invoice-generator
14
+ npm install -g jira-invoice
15
+ ```
16
+
17
+ This installs two commands: `jira-invoice` and its alias `invoice`.
18
+
19
+ ### From source
20
+
21
+ ```bash
22
+ git clone https://github.com/riclara/jira-invoice.git
23
+ cd jira-invoice
15
24
  npm install
16
25
  npm run build
17
26
  npm link
package/dist/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jira-invoice",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "CLI para generar invoices PDF desde CSV de Jira",
5
5
  "type": "module",
6
6
  "bin": {
@@ -30,6 +30,10 @@
30
30
  "files": [
31
31
  "dist"
32
32
  ],
33
+ "repository": {
34
+ "type": "git",
35
+ "url": "https://github.com/riclara/jira-invoice.git"
36
+ },
33
37
  "publishConfig": {
34
38
  "access": "public"
35
39
  }
package/dist/config.d.ts DELETED
@@ -1,5 +0,0 @@
1
- import type { ContactInfo, BillToInfo } from "./types.js";
2
- export declare const FROM: ContactInfo;
3
- export declare const TO: BillToInfo;
4
- export declare const DEFAULT_RATE = 30.2;
5
- export declare const MAX_HOURS_PER_DAY = 8;
package/dist/config.js DELETED
@@ -1,18 +0,0 @@
1
- // ── Tu información ──────────────────────────────────────────────────────────
2
- export const FROM = {
3
- name: "Ricardo Lara",
4
- email: "riclara@gmail.com",
5
- addr1: "Crr 13 # 19 – 90 T5 135",
6
- addr2: "La Ceja – Ant, Colombia",
7
- };
8
- // ── Cliente por defecto ─────────────────────────────────────────────────────
9
- export const TO = {
10
- name: "Spectrio LLC",
11
- addr1: "7624 Bald Cypress Pl",
12
- addr2: "Tampa, FL 33614",
13
- addr3: "United States",
14
- };
15
- // ── Tarifa y límites ────────────────────────────────────────────────────────
16
- export const DEFAULT_RATE = 30.20; // USD por hora
17
- export const MAX_HOURS_PER_DAY = 8.0; // tope diario facturable
18
- //# sourceMappingURL=config.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"config.js","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAEA,+EAA+E;AAC/E,MAAM,CAAC,MAAM,IAAI,GAAgB;IAC/B,IAAI,EAAE,cAAc;IACpB,KAAK,EAAE,mBAAmB;IAC1B,KAAK,EAAE,yBAAyB;IAChC,KAAK,EAAE,yBAAyB;CACjC,CAAC;AAEF,+EAA+E;AAC/E,MAAM,CAAC,MAAM,EAAE,GAAe;IAC5B,IAAI,EAAE,cAAc;IACpB,KAAK,EAAE,sBAAsB;IAC7B,KAAK,EAAE,iBAAiB;IACxB,KAAK,EAAE,eAAe;CACvB,CAAC;AAEF,+EAA+E;AAC/E,MAAM,CAAC,MAAM,YAAY,GAAG,KAAK,CAAC,CAAC,eAAe;AAClD,MAAM,CAAC,MAAM,iBAAiB,GAAG,GAAG,CAAC,CAAC,yBAAyB"}