-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "wiz-light-controller",
"version": "5.2.0",
"private": true,
"description": "Fast, local, cloud-free controller for Philips WiZ lights — a modular JavaScript engine (reused by a CLI and a native macOS app via JavaScriptCore).",
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/MegaManSec/wiz-light-controller#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/MegaManSec/wiz-light-controller.git"
},
"bugs": {
"url": "https://github.com/MegaManSec/wiz-light-controller/issues"
},
"author": {
"name": "Joshua Rogers",
"url": "https://joshua.hu/"
},
"type": "module",
"engines": {
"node": ">=24.0.0"
},
"packageManager": "pnpm@10.6.4",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "pnpm --recursive --filter \"./packages/*\" test",
"test:core": "pnpm --filter wiz-light-core test",
"cli": "pnpm --filter wiz-light-cli start --",
"build:jscore": "node scripts/build-jscore.mjs",
"app": "pnpm build:jscore && make -C apps/macos app",
"app:test": "pnpm build:jscore && swift test --package-path apps/macos"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"esbuild": "^0.24.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.14.0",
"prettier": "^3.4.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}