diff --git a/package.json b/package.json
index d44fb18..d1b9a2f 100644
--- a/package.json
+++ b/package.json
@@ -6,9 +6,7 @@
   "author": "Vylpes",
   "exports": "./dist/index.js",
   "typings": "./dist/index.d.ts",
-  "bin": {
-      "random-bunny": "./dist/cli.js"
-  },
+  "bin": "./dist/cli.js",
   "main": "./dist/index.js",
   "keywords": [
     "rabbit",
diff --git a/src/cli.ts b/src/cli.ts
index 9ad67b2..496c5e9 100644
--- a/src/cli.ts
+++ b/src/cli.ts
@@ -1,4 +1,3 @@
-#!/usr/bin/env node
 import { Command, Option } from "commander";
 import randomBunny from "./index";
 import ICliOptions from "./contracts/ICliOptions";