forked from bitfocus/companion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·112 lines (112 loc) · 3.08 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "companion",
"version": "3.0.0-rc1",
"description": "Companion",
"main": "main.js",
"type": "module",
"private": true,
"scripts": {
"dev": "yarn dev:inner --log-level debug",
"dev:inner": "yarn build:writefile && yarn zx ./tools/dev.mjs -- --admin-address 127.0.0.1 --extra-module-path=./module-local-dev",
"dev:debug": "yarn dev:inner --log-level silly",
"update": "./tools/update.sh",
"dist:webui": "yarn --cwd webui build",
"dist": "zx ./tools/build/complete.mjs",
"macdist": "yarn dist mac-x64",
"macarmdist": "yarn dist mac-arm64",
"windist": "yarn dist win-x64",
"lindist": "yarn dist linux-x64",
"rpidist": "yarn dist linux-arm7",
"dist:prepare": "zx tools/build_prepare.mjs",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"dev-webui": "yarn --cwd webui dev",
"format": "prettier --write .",
"jsdoc": "jsdoc -c jsdoc.json",
"build:writefile": "zx ./tools/build_writefile.mjs",
"module:bulk": "zx ./tools/module_bulk.mjs"
},
"repository": "https://github.com/bitfocus/companion",
"keywords": [
"bitfocus",
"companion"
],
"engines": {
"npm": "please-use-yarn",
"yarn": "^1.22",
"node": ">=18.12 <19"
},
"author": "Bitfocus AS",
"license": "MIT",
"devDependencies": {
"@sentry/webpack-plugin": "^1.20.0",
"chokidar": "^3.5.3",
"dotenv": "^16.0.3",
"jest": "^29.5.0",
"jsdoc": "^4.0.2",
"octokit": "^2.0.19",
"prettier": "^2.8.8",
"tar": "^6.1.15",
"webpack": "^5.84.1",
"webpack-cli": "^5.1.1",
"zx": "^7.2.2"
},
"dependencies": {
"@companion-module/base": "~1.4.1",
"@elgato-stream-deck/node": "^5.7.2",
"@jsep-plugin/numbers": "^1.0.1",
"@jsep-plugin/template": "^1.0.2",
"@julusian/jpeg-turbo": "^2.1.0",
"@loupedeck/node": "^0.4.0",
"@sentry/integrations": "^7.53.1",
"@sentry/node": "^7.53.1",
"@sentry/tracing": "^7.53.1",
"archiver": "^5.3.1",
"body-parser": "^1.20.2",
"bufferutil": "^4.0.7",
"commander": "^10.0.1",
"debounce-fn": "^5.1.2",
"ejson": "^2.2.3",
"emberplus-connection": "^0.1.2",
"env-paths": "^3.0.0",
"express": "^4.18.2",
"express-serve-zip": "^1.0.1",
"fast-json-patch": "^3.1.1",
"find-process": "1.4.7",
"fs-extra": "^11.1.1",
"get-port": "^6.1.2",
"got": "^12.6.1",
"infinitton-idisplay": "^1.1.2",
"jsep": "^1.3.8",
"jsonpath-plus": "^7.2.0",
"lodash-es": "^4.17.21",
"moment": "^2.29.4",
"nanoid": "^4.0.2",
"node-machine-id": "^1.1.12",
"osc": "^2.4.4",
"p-debounce": "^4.0.0",
"p-queue": "^7.3.4",
"path-to-regexp": "^6.2.1",
"pngjs": "^3.3.3",
"respawn": "link:./vendor/respawn",
"selfsigned": "^2.1.1",
"semver": "^7.5.1",
"sharp": "^0.31.3",
"socket.io": "^4.6.1",
"socketcluster-client": "^16.1.1",
"supports-color": "^9.3.1",
"usb": "^2.9.0",
"utf-8-validate": "^6.0.3",
"winston": "^3.9.0",
"ws": "^8.13.0",
"xkeys": "^2.4.0"
},
"collective": {
"type": "donorbox",
"url": "https://donorbox.org/bitfocus-opensource"
},
"resolutions": {
"node-hid": "npm:@julusian/[email protected]",
"node-gyp-build": "github:julusian/node-gyp-build#cross-install-support",
"osc/serialport": "^10.4.0"
}
}