composition of async path of actions is a little silly, will hopefully
get around to a nicer way to do it.

sunset is still todo, moving to build & deployment first.
This commit is contained in:
Alan 2026-03-15 15:36:27 +11:00
commit 61e88054eb
9 changed files with 564 additions and 0 deletions

22
package.json Normal file
View file

@ -0,0 +1,22 @@
{
"name": "lifx-scripts",
"version": "0.0.1",
"description": "Simple LIFX lights automation scripts",
"main": "src/main.ts",
"scripts": {
"prepare": "tsc -p .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Alan",
"license": "MIT",
"dependencies": {
"eventemitter3": "^5.0.1",
"argparse-ts": "^0.9.0",
"lifx-lan-client": "^2.1.2"
},
"devDependencies": {
"@types/node": "^25.5.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}