Skip to content

Commit e40518e

Browse files
committed
chore
1 parent bd0b35a commit e40518e

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

packages/webrtc/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
"author": {
1616
"name": "shinyoshiaki"
1717
},
18-
"main": "lib/webrtc/src/index.js",
1918
"exports": {
2019
".": "./lib/webrtc/src/index.js",
2120
"./nonstandard": "./lib/webrtc/src/nonstandard/index.js"
2221
},
22+
"main": "lib/webrtc/src/index.js",
2323
"types": "lib/webrtc/src/index.d.ts",
2424
"files": [
2525
"lib",
@@ -32,12 +32,12 @@
3232
"deploy:alpha": "npm run build && npm publish --tag alpha",
3333
"doc": "rm -rf doc && typedoc --excludePrivate --disableSources --excludeInternal --plugin typedoc-plugin-markdown --out doc ./src/index.ts",
3434
"format": "npm run unused && npm run lint && prettier --write src/**/*.ts",
35+
"knip": "knip",
3536
"lint": "eslint ./src --fix",
3637
"test": "npm run type && jest --runInBand --forceExit --coverage",
3738
"type": "tsc --noEmit --project ./tsconfig.json",
3839
"unused": "organize-imports-cli src/**/*.ts",
39-
"upgrade-interactive": "npx npm-check-updates -i",
40-
"knip": "knip"
40+
"upgrade-interactive": "npx npm-check-updates -i"
4141
},
4242
"dependencies": {
4343
"@fidm/x509": "^1.2.1",
@@ -54,13 +54,13 @@
5454
"ip": "^1.1.8",
5555
"jspack": "^0.0.4",
5656
"lodash": "^4.17.21",
57+
"mp4box": "^0.5.2",
5758
"nano-time": "^1.0.0",
5859
"p-cancelable": "^2.1.1",
5960
"rx.mini": "^1.2.2",
6061
"turbo-crc32": "^1.0.1",
6162
"tweetnacl": "^1.0.3",
62-
"uuid": "^9.0.0",
63-
"mp4box": "^0.5.2"
63+
"uuid": "^9.0.0"
6464
},
6565
"devDependencies": {
6666
"@types/aes-js": "^3.1.1",

packages/webrtc/src/nonstandard/recorder/writer/webm.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { unlink } from "fs/promises";
22
import { EventDisposer } from "rx.mini";
33

4-
import { SupportedCodec } from "../../../../../rtp/src/container/webm/container";
54
import {
65
DepacketizeCallback,
76
JitterBufferCallback,
@@ -11,7 +10,8 @@ import {
1110
RtpSourceCallback,
1211
saveToFileSystem,
1312
WebmCallback,
14-
} from "../../../../../rtp/src/processor";
13+
SupportedCodec,
14+
} from "../../../../../rtp/src/extra";
1515
import { MediaStreamTrack, WeriftError } from "../../..";
1616
import { MediaWriter } from ".";
1717

0 commit comments

Comments
 (0)