more align with template implementation

This commit is contained in:
2025-10-29 17:39:14 +01:00
parent 8cd7127af8
commit 0a327b247c
13 changed files with 126 additions and 31 deletions

View File

@@ -6,14 +6,15 @@
"scripts": {
"postinstall": "husky",
"format": "prettier -w .",
"package": "yarn run build && companion-module-build",
"build": "rimraf dist && yarn run build:main",
"package": "run build && companion-module-build",
"build": "rimraf dist && run build:main",
"build:main": "tsc -p tsconfig.build.json",
"dev": "tsc -p tsconfig.build.json --watch",
"lint:raw": "eslint",
"lint": "yarn run lint:raw .",
"lint": "run lint:raw .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bitfocus/companion-module-toggl-track.git"
@@ -22,7 +23,6 @@
"node": "^22.14",
"yarn": "^4"
},
"license": "MIT",
"dependencies": {
"@companion-module/base": "~1.13.4",
"toggl-track": "https://github.com/krombel/toggl-track#v0.8.0-2"
@@ -48,5 +48,5 @@
"yarn lint:raw --fix"
]
},
"packageManager": "yarn@4.9.1"
"packageManager": "yarn@4.10.2"
}