UNPKG

hb-hue-tools

Version:
18 lines (12 loc) 401 B
#!/usr/bin/env node // hb-hue-tools/cli/ph.js // // Homebridge Hue Tools. // Copyright © 2018-2025 Erik Baauw. All rights reserved. // // Command line interface to Philips Hue API. import { createRequire } from 'node:module' import { PhTool } from 'hb-hue-tools/PhTool' const require = createRequire(import.meta.url) const packageJson = require('../package.json') new PhTool(packageJson).main()