-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.18 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.18 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@unbrained/homeassistant-cli",
"version": "2026.3.6-2",
"description": "Agent-optimized CLI tool for interacting with the Home Assistant API",
"repository": {
"type": "git",
"url": "https://github.com/unbraind/homeassistant-cli"
},
"homepage": "https://github.com/unbraind/homeassistant-cli#readme",
"bugs": {
"url": "https://github.com/unbraind/homeassistant-cli/issues"
},
"type": "module",
"main": "dist/index.js",
"bin": {
"homeassistant-cli": "dist/cli.js",
"hassio": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/cli.js",
"dev": "bun src/cli.ts",
"test": "vitest run",
"test:e2e:live": "tsx tests/e2e-live.ts",
"test:e2e:help": "vitest run tests/help-surface-e2e.test.ts",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"lint:fix": "eslint . --fix",
"release:prepare": "bash scripts/release/prepare-release.sh",
"release:verify": "bash scripts/release/verify-release.sh",
"release:dry-run": "bash scripts/release/dry-run.sh",
"release:notes": "bash scripts/release/generate-release-notes.sh",
"commit:audit": "bash scripts/git/audit-commit-messages.sh",
"security:scan:history": "bash scripts/security/scan-history.sh",
"prepack": "tsc"
},
"keywords": [
"home-assistant",
"homeassistant",
"hassio",
"cli",
"smart-home",
"automation",
"llm",
"agent"
],
"author": "",
"license": "MIT",
"dependencies": {
"@toon-format/toon": "^2.1.0",
"commander": "^12.1.0",
"undici": "^6.21.0",
"ws": "^8.19.0",
"yaml": "^2.8.2"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^9.17.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8",
"@eslint/js": "^9.39.1",
"globals": "^16.5.0",
"typescript-eslint": "^8.46.1"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "bun@1.2.22",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}