From 339f2b4e27d7c3b52f44a124a854abba507acff3 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Thu, 20 Aug 2026 15:59:54 +0200 Subject: [PATCH] bindings-javascript : remove package.json from git (#4001) This commit removes package.json from git and adds package.json to the gitignore. This file is generated by CMake configure and will be updated and overwritten causing a lot of noise in the git history. It have also been updated manually as part of our release process which will not be needed either. --- bindings/javascript/.gitignore | 2 ++ bindings/javascript/package.json | 26 -------------------------- 2 files changed, 2 insertions(+), 26 deletions(-) delete mode 100644 bindings/javascript/package.json diff --git a/bindings/javascript/.gitignore b/bindings/javascript/.gitignore index 17b4c53a2..218a2e53e 100644 --- a/bindings/javascript/.gitignore +++ b/bindings/javascript/.gitignore @@ -1 +1,3 @@ publish.log +# generated by CMake configure from package-tmpl.json +package.json diff --git a/bindings/javascript/package.json b/bindings/javascript/package.json deleted file mode 100644 index ce9bb54b3..000000000 --- a/bindings/javascript/package.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "name": "whisper.cpp", - "version": "1.9.3", - "description": "Whisper speech recognition", - "main": "whisper.js", - "scripts": { - "test": "echo \"todo: add tests\" && exit 0" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/ggerganov/whisper.cpp" - }, - "keywords": [ - "openai", - "whisper", - "speech-to-text", - "speech-recognition", - "transformer" - ], - "author": "Georgi Gerganov", - "license": "MIT", - "bugs": { - "url": "https://github.com/ggerganov/whisper.cpp/issues" - }, - "homepage": "https://github.com/ggerganov/whisper.cpp#readme" -}