Skip to content

Commit f523adc

Browse files
committed
Update package.json and add shenbang
1 parent ab109b8 commit f523adc

2 files changed

Lines changed: 24 additions & 2 deletions

File tree

package.json

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
{
2-
"name": "invoice",
2+
"name": "@Henriquehnnm/invoice",
3+
"description": "Manage your freelance projects elegantly",
4+
"author": "Henrique Sardinha",
5+
"main": "src/index.ts",
36
"module": "index.ts",
7+
"version": "1.0.3",
48
"type": "module",
59
"private": true,
610
"scripts": {
@@ -26,5 +30,21 @@
2630
"pdfkit": "^0.18.0",
2731
"picocolors": "^1.1.1",
2832
"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"
3050
}

src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/env bun
2+
13
import { cli } from "./cli";
24

35
function main() {

0 commit comments

Comments
 (0)