@humeai/cli 0.0.5 → 0.0.7
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/dist/index.js +66902 -0
- package/package.json +4 -5
- package/dist/hume +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@humeai/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7",
|
|
4
4
|
"module": "index.ts",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "CLI for Hume.ai's OCTAVE expressive TTS API",
|
|
@@ -18,12 +18,11 @@
|
|
|
18
18
|
"typecheck": "tsc --noEmit",
|
|
19
19
|
"format": "prettier --write \"**/*.{ts,js,json,md}\"",
|
|
20
20
|
"format:check": "prettier --check \"**/*.{ts,js,json,md}\"",
|
|
21
|
-
"prebuild": "bun build src/index.ts --
|
|
21
|
+
"prebuild": "bun build src/index.ts --target node --outfile dist/index.js && chmod +x dist/index.js",
|
|
22
22
|
"prepublishOnly": "npm run prebuild"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@clack/prompts": "^0.10.0",
|
|
26
|
-
"bun": "^1.2.2",
|
|
27
26
|
"clipanion": "^4.0.0-rc.4",
|
|
28
27
|
"debug": "^4.4.0",
|
|
29
28
|
"hume": "^0.10.3",
|
|
@@ -31,9 +30,9 @@
|
|
|
31
30
|
"typanion": "^3.14.0"
|
|
32
31
|
},
|
|
33
32
|
"files": [
|
|
34
|
-
"dist/
|
|
33
|
+
"dist/index.js"
|
|
35
34
|
],
|
|
36
35
|
"bin": {
|
|
37
|
-
"hume": "dist/
|
|
36
|
+
"hume": "dist/index.js"
|
|
38
37
|
}
|
|
39
38
|
}
|
package/dist/hume
DELETED
|
Binary file
|