From cc0767bb4a060d1da6c254007084f10ab1098f95 Mon Sep 17 00:00:00 2001 From: "Eric L. Goldstein" Date: Thu, 22 Feb 2024 21:42:44 -0500 Subject: [PATCH] fix bin paths --- package.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index a44178e..37a6d0c 100644 --- a/package.json +++ b/package.json @@ -12,11 +12,11 @@ "./utils" ], "bin": { - "check-environment-symlinks": "./scripts/bun/checkEnvironmentSymlinks.mts", - "check-environment-versions": "./scripts/bun/checkEnvironmentVersions.mts", - "devserver": "./scripts/bun/startDevelopmentServer.mts", - "install-git-hooks": "./scripts/git/installGitHooks.mts", - "remove-git-hooks": "./scripts/git/removeGitHooks.mts" + "check-environment-symlinks": "scripts/bun/checkEnvironmentSymlinks.mts", + "check-environment-versions": "scripts/bun/checkEnvironmentVersions.mts", + "devserver": "scripts/bun/startDevelopmentServer.mts", + "install-git-hooks": "scripts/git/installGitHooks.mts", + "remove-git-hooks": "scripts/git/removeGitHooks.mts" }, "exports": { "./build": "./utils/buildUtils.mts",