-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.63 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "hw2energyid",
"version": "1.3.19",
"description": "A tool to synchronize data from HomeWizard to EnergyID",
"keywords": ["homewizard", "homewizard-energy", "homewizard-p1-meter", "energyid", "sync", "api", "webhook"],
"author": "Michaël Vanderheyden <[email protected]> (https://th3s4mur41.me)",
"license": "MIT",
"homepage": "https://github.com/Th3S4mur41/hw-hooks",
"funding": "https://github.com/sponsors/Th3S4mur41",
"repository": {
"type": "git",
"url": "https://github.com/Th3S4mur41/hw-hooks.git"
},
"bugs": {
"url": "https://github.com/Th3S4mur41/hw-hooks/issues"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"main": ".src/index.mjs",
"bin": {
"hw2energyid": "bin/cli.mjs"
},
"scripts": {
"build": "npm run build:docker",
"build:docker": "docker build --tag hw2energyid .",
"lint": "biome ci . && prettier --check --ignore-unknown .",
"lint:fix": "biome check --apply . && prettier --write --ignore-unknown .",
"prepare": "husky",
"release": "semantic-release",
"postversion": "npm run lint:fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@codedependant/semantic-release-docker": "^5.0.3",
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"husky": "^9.0.5",
"lint-staged": "^15.0.1",
"prettier": "^3.0.0",
"semantic-release": "^24.0.0"
},
"dependencies": {
"node-cron": "^3.0.2",
"yargs": "^17.7.1"
},
"overrides": {
"conventional-changelog-conventionalcommits": ">= 8.0.0"
}
}