speechmarkdown 0.1.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/index.d.ts +0 -0
- package/index.js +1 -0
- package/package.json +52 -0
- package/speechmarkdown.darwin-arm64.node +0 -0
- package/speechmarkdown.node +0 -0
package/index.d.ts
ADDED
|
File without changes
|
package/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('./speechmarkdown.node');
|
package/package.json
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "speechmarkdown",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "SpeechMarkdown parser - convert SpeechMarkdown to SSML",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"types": "index.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"artifacts": "napi artifacts",
|
|
9
|
+
"build": "napi build --platform --release",
|
|
10
|
+
"build:debug": "napi build --platform",
|
|
11
|
+
"prepublishOnly": "napi prepublish -t npm",
|
|
12
|
+
"test": "node test.js",
|
|
13
|
+
"version": "napi version"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"speech",
|
|
17
|
+
"ssml",
|
|
18
|
+
"tts",
|
|
19
|
+
"voice",
|
|
20
|
+
"speechmarkdown"
|
|
21
|
+
],
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"files": [
|
|
24
|
+
"index.js",
|
|
25
|
+
"index.d.ts",
|
|
26
|
+
"*.node"
|
|
27
|
+
],
|
|
28
|
+
"napi": {
|
|
29
|
+
"binaryName": "speechmarkdown",
|
|
30
|
+
"targets": [
|
|
31
|
+
"x86_64-pc-windows-msvc",
|
|
32
|
+
"aarch64-pc-windows-msvc",
|
|
33
|
+
"x86_64-apple-darwin",
|
|
34
|
+
"aarch64-apple-darwin",
|
|
35
|
+
"x86_64-unknown-linux-gnu",
|
|
36
|
+
"aarch64-unknown-linux-gnu",
|
|
37
|
+
"x86_64-unknown-linux-musl"
|
|
38
|
+
]
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@napi-rs/cli": "^3"
|
|
42
|
+
},
|
|
43
|
+
"optionalDependencies": {
|
|
44
|
+
"speechmarkdown-win32-x64-msvc": "0.1.0",
|
|
45
|
+
"speechmarkdown-win32-arm64-msvc": "0.1.0",
|
|
46
|
+
"speechmarkdown-darwin-x64": "0.1.0",
|
|
47
|
+
"speechmarkdown-darwin-arm64": "0.1.0",
|
|
48
|
+
"speechmarkdown-linux-x64-gnu": "0.1.0",
|
|
49
|
+
"speechmarkdown-linux-arm64-gnu": "0.1.0",
|
|
50
|
+
"speechmarkdown-linux-x64-musl": "0.1.0"
|
|
51
|
+
}
|
|
52
|
+
}
|
|
Binary file
|
|
Binary file
|