-
-
Notifications
You must be signed in to change notification settings - Fork 564
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.69 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.69 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
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-app/workspace",
"version": "4.3.0",
"packageManager": "yarn@4.13.0",
"workspaces": [
"companion",
"shared-lib",
"webui",
"launcher",
"launcher-ui",
"docs"
],
"type": "module",
"scripts": {
"postinstall": "husky && run build:writefile && run build:whatsnew",
"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",
"dev:webui:docs": "tsx ./tools/webui-dev-docs.mts",
"dev:docs": "yarn workspace @companion-app/docs start",
"build:ts": "tsc --build --force",
"build:whatsnew": "tsx ./tools/build_whatsnew.mts",
"dist:webui": "run build:ts && run build:whatsnew && yarn workspace @companion-app/webui build",
"dist": "tsx ./tools/build/complete.mts",
"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": "tsx ./tools/build_writefile.mts",
"build:openapi": "zx ./tools/generate_openapi.mjs",
"draft:changelog": "tsx ./tools/draft_changelog.mts",
"build:satellite-schema": "tsx ./tools/satellite_schema_compile.mts",
"module:bulk": "zx ./tools/module_bulk.mjs",
"build:watch": "tsc --build --watch",
"check-types": "tsc --build",
"watch-types": "run build:watch",
"lint": "eslint"
},
"engines": {
"npm": "please-use-yarn",
"yarn": "^4.5",
"node": ">=22.22.2 <23"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": "eslint",
"*.{json,css,scss,md,yaml,yml}": "prettier --check"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tanstack/eslint-plugin-query": "^5.96.1",
"@types/express-serve-static-core": "^5.1.1",
"@types/node": "^22.19.15",
"@types/ps-tree": "^1.1.6",
"@vitest/coverage-v8": "^4.1.2",
"@vitest/ui": "^4.1.2",
"ajv": "^8.18.0",
"chokidar": "^5.0.0",
"concurrently": "^9.2.1",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"husky": "^9.1.7",
"json-schema-to-typescript": "^15.0.4",
"lint-staged": "^16.4.0",
"openapi-typescript": "^7.13.0",
"p-retry": "^8.0.0",
"prettier": "^3.8.1",
"socket": "^1.1.77",
"tsx": "^4.21.0",
"typescript": "~6.0.2",
"typescript-eslint": "^8.58.0",
"vitest": "^4.1.2",
"vitest-mock-extended": "^3.1.0",
"yaml": "^2.8.3",
"zx": "^8.8.5"
},
"resolutions": {
"node-gyp-build": "github:julusian/node-gyp-build#cross-install-support",
"osc/serialport": "npm:empty-npm-package@1.0.0",
"react-select": "npm:@julusian/react-select@^5.8.1-3",
"app-builder-lib@npm:26.8.2": "patch:app-builder-lib@npm%3A26.8.2#~/.yarn/patches/app-builder-lib-npm-26.1.0-3323342f9a.patch",
"@xkeys-lib/core@npm:3.3.0": "patch:@xkeys-lib/core@npm%3A3.3.0#~/.yarn/patches/@xkeys-lib-core-npm-3.3.0-1a65b6423b.patch",
"unix-dgram": "npm:empty-npm-package@1.0.0",
"bare-fs": "npm:empty-npm-package@1.0.0",
"bare-path": "npm:empty-npm-package@1.0.0",
"@types/express-serve-static-core": "^5.1.0",
"node-gyp": "^12.1.0",
"monaco-editor/dompurify": "npm:dompurify@^3.3.3"
},
"dependenciesMeta": {
"@sentry/cli": {
"built": true
},
"better-sqlite3": {
"built": true
},
"electron": {
"built": true
},
"esbuild": {
"built": true
}
}
}