-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.26 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
{
"name": "@depoledna/invoiceit",
"version": "0.2.0",
"description": "Generate beautiful PDF invoices from a simple TOML config, straight from the CLI.",
"type": "module",
"bin": {
"invoice": "dist/cli.js"
},
"files": [
"dist",
"assets"
],
"scripts": {
"build": "tsup",
"dev": "tsx src/cli.tsx",
"typecheck": "tsc --noEmit",
"start": "node dist/cli.js",
"prepublishOnly": "npm run typecheck && npm run build"
},
"keywords": [
"invoice",
"pdf",
"cli",
"react-pdf",
"billing",
"toml"
],
"author": "Denis Poledna <denispoledna11@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/depoledna/invoiceit.git"
},
"bugs": {
"url": "https://github.com/depoledna/invoiceit/issues"
},
"homepage": "https://github.com/depoledna/invoiceit#readme",
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@react-pdf/renderer": "^4.5.1",
"commander": "^15.0.0",
"react": "^19.0.0",
"smol-toml": "^1.7.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"tsup": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^5.6.0"
}
}