-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.44 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.44 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "openhome-cli",
"version": "0.1.40",
"description": "CLI for managing OpenHome voice AI abilities",
"type": "module",
"bin": {
"openhome": "bin/openhome.js",
"openhome-cli": "bin/openhome.js",
"openhome-mcp": "bin/openhome-mcp.js"
},
"main": "dist/cli.js",
"scripts": {
"build": "tsup src/cli.ts src/mcp/voice-server.ts --format esm --dts --clean",
"dev": "tsx src/cli.ts",
"test": "vitest run",
"lint": "tsc --noEmit"
},
"engines": {
"node": ">=18"
},
"keywords": [
"openhome",
"voice",
"ai",
"cli",
"abilities",
"voice-ai",
"developer-tools",
"agents",
"mcp"
],
"homepage": "https://docs.openhome.com",
"repository": {
"type": "git",
"url": "https://github.com/Bradymck/openhome-cli"
},
"bugs": {
"url": "https://github.com/Bradymck/openhome-cli/issues"
},
"author": "Brady McKenna <brady@openhome.com>",
"license": "MIT",
"dependencies": {
"@clack/prompts": "^1.1.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@types/form-data": "^2.2.1",
"archiver": "^7.0.1",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"form-data": "^4.0.5",
"ws": "^8.19.0"
},
"overrides": {
"glob": "^11.0.0"
},
"devDependencies": {
"@types/archiver": "^6.0.3",
"@types/node": "^22.0.0",
"@types/ws": "^8.18.1",
"tsup": "^8.3.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^2.1.9"
}
}