@remotion/install-whisper-cpp 4.0.177 → 4.0.179

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +18 -0
  2. package/package.json +7 -15
package/README.md ADDED
@@ -0,0 +1,18 @@
1
+ # @remotion/install-whisper-cpp
2
+
3
+ Helpers for installing and using Whisper.cpp
4
+
5
+ [![NPM Downloads](https://img.shields.io/npm/dm/@remotion/install-whisper-cpp.svg?style=flat&color=black&label=Downloads)](https://npmcharts.com/compare/@remotion/install-whisper-cpp?minimal=true)
6
+
7
+ ## Installation
8
+
9
+ ```bash
10
+ npm install @remotion/install-whisper-cpp --save-exact
11
+ ```
12
+
13
+ When installing a Remotion package, make sure to align the version of all `remotion` and `@remotion/*` packages to the same version.
14
+ Remove the `^` character from the version number to use the exact version.
15
+
16
+ ## Usage
17
+
18
+ See the [documentation](https://www.remotion.dev/docs/install-whisper-cpp) for more information.
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
+ "repository": {
3
+ "url": "https://github.com/remotion-dev/remotion/tree/main/packages/install-whisper-cpp"
4
+ },
2
5
  "name": "@remotion/install-whisper-cpp",
3
- "version": "4.0.177",
4
- "description": "Install helper for Whisper.cpp",
6
+ "version": "4.0.179",
7
+ "description": "Helpers for installing and using Whisper.cpp",
5
8
  "main": "dist/index.js",
6
9
  "sideEffects": false,
7
- "repository": {
8
- "url": "https://github.com/remotion-dev/remotion"
9
- },
10
10
  "bugs": {
11
11
  "url": "https://github.com/remotion-dev/remotion/issues"
12
12
  },
@@ -20,16 +20,7 @@
20
20
  "react": ">=16.8.0",
21
21
  "react-dom": ">=16.8.0"
22
22
  },
23
- "devDependencies": {
24
- "@jonny/eslint-config": "3.0.281",
25
- "@types/node": "18.14.6",
26
- "eslint": "8.56.0",
27
- "eslint-plugin-10x": "1.5.2",
28
- "eslint-plugin-react": "7.32.2",
29
- "eslint-plugin-react-hooks": "4.4.0",
30
- "prettier": "3.2.5",
31
- "prettier-plugin-organize-imports": "3.2.4"
32
- },
23
+ "devDependencies": {},
33
24
  "keywords": [
34
25
  "remotion",
35
26
  "openai",
@@ -38,6 +29,7 @@
38
29
  "publishConfig": {
39
30
  "access": "public"
40
31
  },
32
+ "homepage": "https://www.remotion.dev/docs/install-whisper-cpp",
41
33
  "scripts": {
42
34
  "formatting": "prettier src --check",
43
35
  "lint": "eslint src --ext ts,tsx",