-
Notifications
You must be signed in to change notification settings - Fork 125
/
Copy pathpackage.json
39 lines (39 loc) · 1.56 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
{
"name": "pixelstreaming-infrastructure",
"workspaces": [
"Common",
"Frontend/library",
"Frontend/ui-library",
"Frontend/implementations/typescript",
"Frontend/implementations/react",
"Signalling",
"SignallingWebServer",
"SFU",
"Extras/JSStreamer",
"Extras/FrontendTests",
"Extras/MinimalStreamTester",
"Extras/SS_Test",
"Extras/mediasoup-sdp-bridge"
],
"private": true,
"scripts": {
"changeset": "npx @changesets/cli",
"clean": "npm run clean --ws",
"build": "npm run build --ws",
"build:all:cjs": "cd Common && npm run build:cjs && cd ../Signalling && npm run build:cjs && cd ../SignallingWebServer && npm run build && cd ../Frontend/library && npm run build:cjs && cd ../ui-library && npm run build:cjs && cd ../implementations/typescript && npm run build:dev",
"build:all:esm": "cd Common && npm run build:esm && cd ../Signalling && npm run build:esm && cd ../SignallingWebServer && npm run build && cd ../Frontend/library && npm run build:esm && cd ../ui-library && npm run build:esm && cd ../implementations/typescript && npm run build:esm",
"pre-commit-lint": "lint-staged"
},
"pre-commit": [
"pre-commit-lint"
],
"devDependencies": {
"@changesets/cli": "^2.28.1",
"@types/node": "^22.14.0",
"eslint": "^9.22.0",
"eslint-plugin-prettier": "^5.2.6",
"lint-staged": "^15.3.0",
"pre-commit": "^1.0.10",
"typescript-eslint": "^8.26.1"
}
}