Initial commit

This commit is contained in:
2024-01-25 17:13:10 -05:00
committed by GitHub
commit 79dccc9709
12 changed files with 215 additions and 0 deletions

3
companion/HELP.md Normal file
View File

@@ -0,0 +1,3 @@
## Your module
Write some help for your users here!

26
companion/manifest.json Normal file
View File

@@ -0,0 +1,26 @@
{
"id": "your-module-name",
"name": "your-module-name",
"shortname": "module-shortname",
"description": "A short one line description of your module",
"version": "0.0.0",
"license": "MIT",
"repository": "git+https://github.com/bitfocus/companion-module-your-module-name.git",
"bugs": "https://github.com/bitfocus/companion-module-your-module-name/issues",
"maintainers": [
{
"name": "Your name",
"email": "Your email"
}
],
"runtime": {
"type": "node18",
"api": "nodejs-ipc",
"apiVersion": "0.0.0",
"entrypoint": "../main.js"
},
"legacyIds": [],
"manufacturer": "Your company",
"products": ["Your product"],
"keywords": []
}