chore: add root package.json, lock files, and gitignore *.tgz

- Root package.json (workspace definition) was missing from initial commit
- Commit root package-lock.json for reproducible installs
- Commit packages/homebridge-plugin/package-lock.json
- Add *.tgz to .gitignore (built npm tarballs are release assets, not source)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
SRS IT
2026-03-28 20:34:13 -04:00
parent 3bcc427683
commit 5a5155c216
4 changed files with 8818 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
{
"name": "wemo-manager",
"version": "2.0.0",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"dev": "npm run dev --workspace=apps/desktop",
"build": "npm run build --workspace=apps/desktop",
"install:all": "npm install"
}
}