From 96bd00b1ce51de234a41c032325e72402fa1a53a Mon Sep 17 00:00:00 2001 From: Matthew Wonlaw Date: Mon, 28 Oct 2024 15:50:40 -0400 Subject: [PATCH] add `bin` entry to `package.json` to point to `cli` --- package.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 5fbacb0e..8e233a5b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "better-sqlite3-bedrock", - "version": "1.0.3", + "version": "1.0.4", "description": "The fastest and simplest library for SQLite3 in Node.js.", "homepage": "https://github.com/tantaman/better-sqlite3-bedrock", "author": "Matt Wonlaw", @@ -9,6 +9,9 @@ "url": "git://github.com/tantaman/better-sqlite3-bedrock.git" }, "main": "lib/index.js", + "bin": { + "zero-sqlite3": "./build/Release/shell" + }, "files": [ "binding.gyp", "src/*.[ch]pp",