From 2bbc928218c3c5520d19e03f7a5bbc917d0d3552 Mon Sep 17 00:00:00 2001 From: Zeke Sikelianos Date: Mon, 5 Feb 2024 12:22:08 -0800 Subject: [PATCH] fix bin name --- package-lock.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index 917ba5e..653a612 100644 --- a/package-lock.json +++ b/package-lock.json @@ -16,7 +16,7 @@ "readline-sync": "^1.4.10" }, "bin": { - "create-replicate-app": "index.mjs" + "create-replicate": "index.mjs" }, "devDependencies": { "standard": "^17.1.0", diff --git a/package.json b/package.json index 2a4f354..019e545 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "Generate a simple Node.js project structure for running AI models with Replicate's API", "main": "index.js", "bin": { - "create-replicate-app": "./index.mjs" + "create-replicate": "./index.mjs" }, "type": "module", "scripts": {