-
-
Notifications
You must be signed in to change notification settings - Fork 507
/
package.json
57 lines (57 loc) · 1.78 KB
/
package.json
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
50
51
52
53
54
55
56
57
{
"name": "@companion-app/workspace",
"version": "3.5.0",
"packageManager": "[email protected]",
"workspaces": [
"companion",
"shared-lib",
"webui",
"launcher"
],
"type": "module",
"scripts": {
"postinstall": "run build:writefile",
"dev": "yarn workspace companion dev",
"dev:inner": "yarn workspace companion dev:inner",
"dev:debug": "yarn workspace companion dev:debug",
"dev:webui": "yarn workspace @companion-app/webui dev",
"build:ts": "yarn workspaces foreach --all run build:ts",
"dist:webui": "yarn workspace @companion-app/webui build",
"dist": "zx ./tools/build/complete.mjs",
"macdist": "run dist mac-x64",
"macarmdist": "run dist mac-arm64",
"windist": "run dist win-x64",
"lindist": "run dist linux-x64",
"rpidist": "run dist linux-arm7",
"format": "prettier --write .",
"test": "vitest",
"build:writefile": "zx ./tools/build_writefile.mjs",
"module:bulk": "zx ./tools/module_bulk.mjs"
},
"engines": {
"npm": "please-use-yarn",
"yarn": "^4",
"node": ">=18.16 <19"
},
"devDependencies": {
"@inquirer/prompts": "^7.2.0",
"@types/ps-tree": "^1.1.6",
"chokidar": "^3.6.0",
"concurrently": "^9.1.0",
"dotenv": "^16.4.7",
"octokit": "^4.0.2",
"open": "^10.1.0",
"prettier": "^3.4.2",
"typescript": "~5.7.2",
"vitest": "^2.1.8",
"vitest-mock-extended": "^2.0.2",
"yaml": "^2.6.1",
"zx": "^8.2.4"
},
"resolutions": {
"node-gyp-build": "github:julusian/node-gyp-build#cross-install-support",
"osc/serialport": "^12.0.0",
"react-select": "npm:@julusian/react-select@^5.8.1-3",
"app-builder-lib@npm:26.0.0-alpha.7": "patch:app-builder-lib@npm%3A26.0.0-alpha.7#~/.yarn/patches/app-builder-lib-npm-26.0.0-alpha.7-e1b3dca119.patch"
}
}