-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.06 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.06 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
{
"name": "open-wemo",
"version": "0.4.0",
"private": true,
"description": "Open-source solution for controlling Belkin WeMo smart home devices",
"workspaces": ["packages/*"],
"scripts": {
"dev": "bun run --filter @open-wemo/bridge dev",
"dev:web": "bun run --filter @open-wemo/web dev",
"build": "bun scripts/build.ts",
"build:windows": "bun scripts/build.ts windows",
"build:mac": "bun scripts/build.ts mac",
"build:mac-intel": "bun scripts/build.ts mac-intel",
"build:linux": "bun scripts/build.ts linux",
"build:all": "bun scripts/build.ts all",
"typecheck": "bun run --filter '*' typecheck",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"test": "bun test"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@types/bun": "^1.1.0",
"typescript": "^5.6.0"
},
"license": "PolyForm-Noncommercial-1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/haal-laah/open-wemo.git"
},
"engines": {
"bun": ">=1.0.0"
}
}