-
-
Notifications
You must be signed in to change notification settings - Fork 514
/
Copy pathpackage.json
56 lines (56 loc) · 1.72 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
{
"name": "@companion-app/workspace",
"version": "3.4.0",
"packageManager": "[email protected]",
"workspaces": [
"companion",
"shared-lib",
"webui",
"launcher",
"vendor/*"
],
"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",
"update": "./tools/update.sh",
"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": "node --max-old-space-size=4000 --experimental-vm-modules ./node_modules/jest/bin/jest.js",
"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": "^5.5.0",
"chokidar": "^3.6.0",
"concurrently": "^8.2.2",
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"octokit": "^4.0.2",
"open": "^10.1.0",
"prettier": "^3.3.3",
"yaml": "^2.5.1",
"zx": "^7.2.3"
},
"resolutions": {
"app-builder-bin": "npm:@julusian/[email protected]",
"node-gyp-build": "github:julusian/node-gyp-build#cross-install-support",
"osc/serialport": "^10.5.0",
"react-select": "npm:@julusian/react-select@^5.8.1-1"
}
}