-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 993 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 993 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "@humeai/cli",
"version": "0.0.12",
"module": "index.ts",
"type": "module",
"description": "CLI for Hume.ai's OCTAVE expressive TTS API",
"devDependencies": {
"@types/bun": "^1.2.22",
"@types/debug": "^4.1.12",
"prettier": "^3.5.2"
},
"peerDependencies": {
"typescript": "^5.9.2"
},
"scripts": {
"test": "bun test",
"test:verbose": "BUN_TEST_VERBOSE=1 bun test",
"typecheck": "tsc --noEmit",
"format": "prettier --write \"**/*.{ts,js,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,js,json,md}\"",
"prebuild": "bun build src/index.ts --target node --outfile dist/index.js && chmod +x dist/index.js",
"prepublishOnly": "npm run prebuild"
},
"dependencies": {
"@clack/prompts": "^0.10.0",
"clipanion": "^4.0.0-rc.4",
"debug": "^4.4.0",
"hume": "0.15.9",
"open": "^10.1.0",
"typanion": "^3.14.0"
},
"files": [
"dist/index.js"
],
"bin": {
"hume": "dist/index.js"
}
}