-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.38 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "invoicr",
"version": "1.7.3",
"description": "CLI tool and desktop app to generate DOCX/PDF invoices with e-invoice support",
"type": "module",
"main": "dist/invoice.js",
"bin": {
"invoicr": "dist/invoice.js",
"invoicr-new": "dist/create-client.js",
"invoicr-init": "dist/commands/init.js",
"invoicr-list": "dist/commands/list.js",
"invoicr-export": "dist/commands/export.js",
"invoicr-bulk": "dist/commands/bulk.js",
"invoicr-clone": "dist/commands/clone-client.js",
"invoicr-email": "dist/commands/email.js",
"invoicr-einvoice": "dist/commands/einvoice.js",
"invoicr-server": "dist/api/index.js",
"invoicr-gui": "dist/commands/gui.js"
},
"scripts": {
"build": "tsc",
"postinstall": "node scripts/postinstall.js || true",
"invoice": "node dist/invoice.js",
"new-client": "node dist/create-client.js",
"init": "node dist/commands/init.js",
"list": "node dist/commands/list.js",
"export": "node dist/commands/export.js",
"bulk": "node dist/commands/bulk.js",
"test": "vitest run",
"test:watch": "vitest",
"dev": "tsx src/invoice.ts",
"api-server": "node dist/api/index.js",
"gui": "npm run api-server & sleep 1 && cd gui && npm run tauri:dev",
"gui:dev": "npm run api-server & sleep 1 && cd gui && npm run dev",
"gui:dev:frontend": "cd gui && npm run dev",
"gui:tauri": "cd gui && npm run tauri:dev",
"setup-hooks": "bash scripts/setup-hooks.sh"
},
"keywords": [
"invoice",
"invoicing",
"pdf",
"docx",
"billing",
"freelance",
"cli",
"gui",
"desktop",
"e-invoice",
"xrechnung",
"zugferd",
"generator"
],
"author": "Cristian Magherusan-Stanciu <cristi@leanercloud.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/LeanerCloud/invoicr.git"
},
"files": [
"dist",
"templates",
"examples",
"scripts/postinstall.js",
"bin",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@e-invoice-eu/core": "^2.1.15",
"angular-expressions": "^1.5.1",
"docx": "^9.5.1",
"docxtemplater": "^3.67.6",
"pizzip": "^3.2.0",
"zod": "^4.1.13"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^2.1.9",
"tsx": "^4.7.0",
"typescript": "^5.0.0",
"vitest": "^2.0.0"
}
}