@timur00kh/whisper.wasm 0.0.5 → 0.0.6-canary.ea434f1

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 +3 -3
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -16,7 +16,7 @@ A TypeScript wrapper for [whisper.cpp](https://github.com/ggerganov/whisper.cpp)
16
16
  ## Installation
17
17
 
18
18
  ```bash
19
- npm install @timur00kh/whisper.wasm
19
+ npm install @timur00kh/whisper.wasm@canary
20
20
  ```
21
21
 
22
22
  ## Quick Start
@@ -24,7 +24,7 @@ npm install @timur00kh/whisper.wasm
24
24
  ### Basic Usage
25
25
 
26
26
  ```typescript
27
- import { WhisperWasmService, ModelManager } from 'whisper.wasm';
27
+ import { WhisperWasmService, ModelManager } from '@timur00kh/whisper.wasm';
28
28
 
29
29
  // Initialize the service
30
30
  const whisper = new WhisperWasmService({ logLevel: 1 });
@@ -59,7 +59,7 @@ for await (const segment of stream) {
59
59
  ### Model Management
60
60
 
61
61
  ```typescript
62
- import { ModelManager, getAllModels } from 'whisper.wasm';
62
+ import { ModelManager, getAllModels } from '@timur00kh/whisper.wasm';
63
63
 
64
64
  const modelManager = new ModelManager();
65
65
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@timur00kh/whisper.wasm",
3
- "version": "0.0.5",
3
+ "version": "0.0.6-canary.ea434f1",
4
4
  "description": "WebAssembly bindings for OpenAI Whisper speech recognition",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.es.js",
@@ -86,7 +86,7 @@
86
86
  },
87
87
  "repository": {
88
88
  "type": "git",
89
- "url": "https://github.com/timur00kh/whisper.wasm.git"
89
+ "url": "git+https://github.com/timur00kh/whisper.wasm.git"
90
90
  },
91
91
  "bugs": {
92
92
  "url": "https://github.com/timur00kh/whisper.wasm/issues"