-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
73 lines (73 loc) · 2.63 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
{
"name": "skyway-sdk",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "lerna run build",
"build:example": "npm run build && lerna run build:example",
"clean": "lerna clean -y && rm -rf ./packages/*/dist && rm -rf ./packages/*/node_modules && rm -rf ./packages/*/bundler && rm -rf node_modules",
"type": "lerna run type",
"compile": "lerna run compile && lerna run type",
"doc": "npm run compile && npm run doc:update",
"doc:update": "lerna run doc && zx ./scripts/update-api-reference.mjs",
"format": "lerna run format",
"lint": "lerna run lint",
"graph": "lerna run graph",
"playground": "cd examples/playground && npm run dev",
"playground-room": "cd examples/playground-room && npm run dev",
"test": "npm run compile && zx ./scripts/test.mjs",
"test:no-compile": "zx ./scripts/test.mjs",
"test:sfu": "npm run compile && zx ./scripts/test-sfu.mjs",
"test:sfu-no-compile": "zx ./scripts/test-sfu.mjs",
"test:p2p": "npm run compile && zx ./scripts/test-p2p.mjs",
"test:p2p-no-compile": "zx ./scripts/test-p2p.mjs",
"watch": "lerna run watch",
"upgrade-interactive": "npx npm-check --update",
"first": "npm i && npm run compile",
"update-mirror": "zx scripts/update-mirror-repo.mjs"
},
"devDependencies": {
"@types/jasmine": "^4.3.0",
"@types/jasmine-ajax": "^3.3.5",
"@types/jest": "^29.5.13",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"esbuild": "^0.23.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-deprecation": "^1.3.3",
"eslint-plugin-jest": "^24.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"jasmine-ajax": "^4.0.0",
"jasmine-core": "^4.4.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-firefox-launcher": "^2.1.3",
"karma-jasmine": "^5.1.0",
"karma-safari-launcher": "^1.0.0",
"karma-typescript": "^5.5.4",
"karma-typescript-es6-transform": "^5.5.4",
"lerna": "^8.1.8",
"npm-run-all": "^4.1.5",
"organize-imports-cli": "^0.10.0",
"prettier": "^2.4.1",
"ts-jest": "^29.2.5",
"typedoc": "^0.25.0",
"typedoc-plugin-markdown": "3.17.1",
"typedoc-plugin-zod": "^1.3.1",
"typescript": "4.7.4",
"zx": "^7.2.3"
},
"packageManager": "[email protected]+sha256.b8807aebb9656758e2872fa6e7c564b506aa2faa9297439a478d471d2fe32483",
"engines": {
"node": ">=18.12.0",
"npm": "=10.8.1"
}
}