forked from bitfocus/companion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.6 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
{
"name": "@companion-app/workspace",
"version": "3.3.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"
},
"devDependencies": {
"chokidar": "^3.6.0",
"concurrently": "^8.2.2",
"dotenv": "^16.4.4",
"inquirer": "^9.2.14",
"jest": "^29.7.0",
"octokit": "^3.1.2",
"open": "^10.0.3",
"prettier": "^3.2.5",
"tar": "^6.2.0",
"zx": "^7.2.3"
},
"resolutions": {
"app-builder-bin": "npm:@julusian/[email protected]",
"node-gyp-build": "github:julusian/node-gyp-build#cross-install-support",
"node-hid": "npm:@julusian/[email protected]",
"osc/serialport": "^10.5.0"
}
}