We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab109b8 commit f523adcCopy full SHA for f523adc
2 files changed
package.json
@@ -1,6 +1,10 @@
1
{
2
- "name": "invoice",
+ "name": "@Henriquehnnm/invoice",
3
+ "description": "Manage your freelance projects elegantly",
4
+ "author": "Henrique Sardinha",
5
+ "main": "src/index.ts",
6
"module": "index.ts",
7
+ "version": "1.0.3",
8
"type": "module",
9
"private": true,
10
"scripts": {
@@ -26,5 +30,21 @@
26
30
"pdfkit": "^0.18.0",
27
31
"picocolors": "^1.1.1",
28
32
"zod": "^4.3.6"
29
- }
33
+ },
34
+ "bin": {
35
+ "invoice": "./src/index.ts"
36
37
+ "publishConfig": {
38
+ "access": "public"
39
40
+ "files": [
41
+ "src",
42
+ "README.md"
43
+ ],
44
+ "keywords": [
45
+ "cli",
46
+ "invoice",
47
+ "bun"
48
49
+ "license": "GPL-3.0"
50
}
src/index.ts
@@ -1,3 +1,5 @@
+#!/usr/bin/env bun
+
import { cli } from "./cli";
function main() {
0 commit comments