transcribe-cpp 0.0.0
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.
- package/LICENSE +21 -0
- package/README.md +17 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +10 -0
- package/package.json +37 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 The transcribe.cpp authors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# transcribe-cpp
|
|
2
|
+
|
|
3
|
+
TypeScript/Node.js bindings for [transcribe.cpp](https://github.com/handy-computer/transcribe.cpp),
|
|
4
|
+
a C/C++ speech-to-text library built on ggml.
|
|
5
|
+
|
|
6
|
+
> **Status: placeholder.** This release reserves the `transcribe-cpp` name on
|
|
7
|
+
> npm while the first-party bindings are developed. It ships no functionality
|
|
8
|
+
> yet. Watch the repository for the first functional release.
|
|
9
|
+
|
|
10
|
+
```ts
|
|
11
|
+
import { version } from "transcribe-cpp";
|
|
12
|
+
|
|
13
|
+
console.log(version);
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
- Package: `transcribe-cpp`
|
|
17
|
+
- License: MIT
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* TypeScript/Node.js bindings for transcribe.cpp.
|
|
3
|
+
*
|
|
4
|
+
* This is a placeholder package that reserves the `transcribe-cpp` name on npm
|
|
5
|
+
* while first-party bindings are developed. It ships no functionality yet.
|
|
6
|
+
*
|
|
7
|
+
* @see https://github.com/handy-computer/transcribe.cpp
|
|
8
|
+
*/
|
|
9
|
+
/** Version of this placeholder package. */
|
|
10
|
+
export declare const version = "0.0.0";
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* TypeScript/Node.js bindings for transcribe.cpp.
|
|
3
|
+
*
|
|
4
|
+
* This is a placeholder package that reserves the `transcribe-cpp` name on npm
|
|
5
|
+
* while first-party bindings are developed. It ships no functionality yet.
|
|
6
|
+
*
|
|
7
|
+
* @see https://github.com/handy-computer/transcribe.cpp
|
|
8
|
+
*/
|
|
9
|
+
/** Version of this placeholder package. */
|
|
10
|
+
export const version = "0.0.0";
|
package/package.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "transcribe-cpp",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"description": "TypeScript/Node.js bindings for transcribe.cpp (pre-release name reservation placeholder)",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"exports": {
|
|
7
|
+
".": {
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"import": "./dist/index.js"
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
"main": "./dist/index.js",
|
|
13
|
+
"module": "./dist/index.js",
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"files": ["dist", "README.md", "LICENSE"],
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"author": "The transcribe.cpp authors",
|
|
18
|
+
"homepage": "https://github.com/handy-computer/transcribe.cpp#readme",
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://github.com/handy-computer/transcribe.cpp.git"
|
|
22
|
+
},
|
|
23
|
+
"bugs": {
|
|
24
|
+
"url": "https://github.com/handy-computer/transcribe.cpp/issues"
|
|
25
|
+
},
|
|
26
|
+
"keywords": ["transcription", "speech-to-text", "asr", "stt", "ggml", "whisper", "parakeet"],
|
|
27
|
+
"engines": {
|
|
28
|
+
"node": ">=18"
|
|
29
|
+
},
|
|
30
|
+
"scripts": {
|
|
31
|
+
"build": "tsc",
|
|
32
|
+
"prepublishOnly": "bun run build"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"typescript": "^5.6.0"
|
|
36
|
+
}
|
|
37
|
+
}
|