-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
62 lines (62 loc) · 2.17 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
{
"name": "werift",
"version": "0.0.1",
"private": "true",
"description": "WebRTC Implementation for TypeScript (Node.js)",
"keywords": [
"WebRTC",
"node.js"
],
"homepage": "https://github.com/shinyoshiaki/werift-webrtc",
"repository": {
"type": "git",
"url": "https://github.com/shinyoshiaki/werift-webrtc.git"
},
"license": "MIT",
"author": "shinyoshiaki <shinyoshiaki2012@gmail.com>",
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"ci": "run-s type:all build test doc",
"clean": "rm -rf packages/*/node_modules",
"datachannel": "ts-node-dev examples/datachannel/offer.ts",
"debug": "DEBUG=werift* tsx watch examples/mediachannel/sendrecv/answer.ts",
"doc": "npm run doc --workspaces --if-present && rm -rf doc && cd packages/webrtc && mv doc ../..",
"e2e": "cd e2e && npm run ci:silent",
"e2e:verbose": "cd e2e && npm run ci",
"example": "tsx watch examples/ice/restart/offer.ts",
"format": "npm run format --workspaces --if-present && run-s format:examples format:e2e",
"format:e2e": "cd e2e && cp ../biome.json ./ && npm run format",
"format:examples": "cd examples && cp ../biome.json ./ && npm run format",
"knip": "npx knip --config ./knip.json --dependencies --fix",
"media": "DEBUG=werift* ts-node-dev examples/mediachannel/pubsub/offer.ts",
"test": "run-s test:small e2e",
"test:small": "npm run test --workspaces --if-present",
"type": "run-s type:packages type:extra",
"type:extra": "tsc --noEmit -p ./tsconfig.json",
"type:packages": "npm run type --workspaces --if-present",
"upgrade-interactive": "npx npm-check-updates -i --deep"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^22.13.4",
"knip": "^5.44.1",
"npm-run-all2": "^7.0.2",
"organize-imports-cli": "^0.10.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsx": "^4.19.2",
"typedoc": "0.27.7",
"typedoc-plugin-markdown": "4.4.2",
"typescript": "5.7.3",
"vitest": "3.0.5"
},
"packageManager": "npm@11.1.0",
"engines": {
"node": ">=18"
},
"readme": "README.md"
}