-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.23 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
{
"name": "homey",
"version": "4.5.0",
"description": "Command-line interface and type declarations for Homey Apps",
"main": "bin/homey.js",
"files": [
"/assets",
"/bin",
"/lib",
"/sdk",
"/services",
"/config.js"
],
"scripts": {
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --max-warnings=0 --fix",
"prettier": "prettier --write .",
"prettier:check": "prettier --check .",
"test": "node --test",
"test:coverage": "node --test --experimental-test-coverage --test-coverage-include='bin/**/*.js' --test-coverage-include='bin/**/*.mjs' --test-coverage-include='lib/**/*.js' --test-coverage-include='lib/**/*.mjs' --test-coverage-include='services/**/*.js' --test-coverage-lines=48 --test-coverage-branches=70 --test-coverage-functions=64",
"test:docker": "node --test tests/smoke/docker.mjs",
"prepare": "husky"
},
"bin": {
"homey": "bin/homey.mjs"
},
"engines": {
"node": ">=24"
},
"repository": {
"url": "https://github.com/athombv/node-homey"
},
"author": "Athom B.V.",
"license": "ISC",
"readme": "README.md",
"dependencies": {
"@anthropic-ai/sdk": "^0.91.0",
"cli-table": "^0.3.11",
"colors": "^1.1.2 <=1.4.0",
"deepmerge": "^4.3.1",
"dockerode": "^4.0.2",
"express": "^4.19.2",
"figures": "^3.2.0",
"filesize": "^6.4.0",
"fs-extra": "^10.1.0",
"get-port": "^7.2.0",
"homey-api": "^3.20.0",
"homey-lib": "^2.52.2",
"ignore-walk": "^3.0.3",
"inquirer": "8.1.2",
"object-path": "^0.11.4",
"open": "^8.4.2",
"openai": "^4.52.7",
"p-queue": "^6.6.2",
"semver": "^7.6.0",
"sharp": "^0.33.4",
"smol-toml": "^1.6.0",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"tar-fs": "^2.1.1",
"tmp-promise": "^3.0.3",
"update-notifier": "^5.1.0",
"yargs": "^18.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.3.2",
"prettier": "^3.8.1"
},
"lint-staged": {
"**/*.{js,mjs}": [
"eslint --max-warnings=0 --fix"
],
"**/*.{js,mjs,json,md,yml,yaml,html}": [
"prettier --write"
]
}
}