-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.26 KB
/
package.json
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
{
"name": "com.heatzy",
"version": "21.0.1",
"type": "module",
"scripts": {
"format": "prettier . --check",
"format:docs": "prettier README.md --ignore-path --write",
"format:fix": "prettier . --write",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"prepare": "npm run format:docs && npm run lint:fix && npm run format:fix",
"publish": "homey app publish"
},
"dependencies": {
"@olivierzal/heatzy-api": "^5.0.0",
"core-js": "^3.40.0",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@eslint/json": "^0.9.1",
"@eslint/markdown": "^6.2.1",
"@helljs/eslint-import-resolver-x": "^1.1.0",
"@html-eslint/eslint-plugin": "^0.33.0",
"@html-eslint/parser": "^0.33.0",
"@stylistic/eslint-plugin": "^2.13.0",
"@types/homey": "npm:homey-apps-sdk-v3-types@^0.3.10",
"@types/node": "^22.10.7",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-package-json": "^0.20.1",
"eslint-plugin-perfectionist": "^4.7.0",
"jsonc-eslint-parser": "^2.4.0",
"prettier": "^3.4.2",
"prettier-plugin-packagejson": "^2.5.8",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0"
}
}