@otoji/core-darwin-x64 0.0.0-placeholder → 0.1.17
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/README.md +2 -4
- package/core.darwin-x64.node +0 -0
- package/package.json +38 -4
package/README.md
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
#
|
|
1
|
+
# `@otoji/core-darwin-x64`
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
[release.yml](https://github.com/snomiao/otoji/blob/main/.github/workflows/release.yml)
|
|
5
|
-
on the next conventional-commits release.
|
|
3
|
+
This is the **x86_64-apple-darwin** binary for `@otoji/core`
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,11 +1,45 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@otoji/core-darwin-x64",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"
|
|
3
|
+
"version": "0.1.17",
|
|
4
|
+
"os": [
|
|
5
|
+
"darwin"
|
|
6
|
+
],
|
|
7
|
+
"cpu": [
|
|
8
|
+
"x64"
|
|
9
|
+
],
|
|
10
|
+
"main": "core.darwin-x64.node",
|
|
11
|
+
"files": [
|
|
12
|
+
"core.darwin-x64.node"
|
|
13
|
+
],
|
|
14
|
+
"description": "音字 — realtime speech ⇄ text. Node/Bun bindings for the otoji Rust crate (SenseVoice ASR + multilingual polish + TTS).",
|
|
15
|
+
"keywords": [
|
|
16
|
+
"asr",
|
|
17
|
+
"speech-to-text",
|
|
18
|
+
"stt",
|
|
19
|
+
"tts",
|
|
20
|
+
"sensevoice",
|
|
21
|
+
"realtime",
|
|
22
|
+
"japanese",
|
|
23
|
+
"chinese",
|
|
24
|
+
"multilingual",
|
|
25
|
+
"transcription",
|
|
26
|
+
"napi-rs"
|
|
27
|
+
],
|
|
28
|
+
"author": "snomiao <snomiao@gmail.com>",
|
|
29
|
+
"homepage": "https://github.com/snomiao/otoji",
|
|
5
30
|
"license": "MIT",
|
|
31
|
+
"engines": {
|
|
32
|
+
"node": ">= 18"
|
|
33
|
+
},
|
|
34
|
+
"publishConfig": {
|
|
35
|
+
"access": "public",
|
|
36
|
+
"registry": "https://registry.npmjs.org/"
|
|
37
|
+
},
|
|
6
38
|
"repository": {
|
|
7
39
|
"type": "git",
|
|
8
40
|
"url": "git+https://github.com/snomiao/otoji.git"
|
|
9
41
|
},
|
|
10
|
-
"
|
|
11
|
-
|
|
42
|
+
"bugs": {
|
|
43
|
+
"url": "https://github.com/snomiao/otoji/issues"
|
|
44
|
+
}
|
|
45
|
+
}
|