Skip to content

Commit

Permalink
verup
Browse files Browse the repository at this point in the history
  • Loading branch information
shinyoshiaki committed Jan 13, 2025
1 parent 00eb8f2 commit 80763b5
Show file tree
Hide file tree
Showing 9 changed files with 51 additions and 45 deletions.
50 changes: 27 additions & 23 deletions e2e/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion e2e/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
"dependencies": {
"bowser": "^2.11.0",
"werift": "^0.20.1",
"werift": "^0.21.9",
"werift-rtp": "^0.8.2"
},
"devDependencies": {
Expand Down
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions packages/common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "werift-common",
"version": "0.0.2",
"version": "0.0.3",
"description": "common",
"keywords": [
"WebRTC",
Expand All @@ -18,8 +18,7 @@
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"src"
"lib"
],
"scripts": {
"build": "rm -rf lib && npm run format && tsc -p ./tsconfig.production.json",
Expand Down
7 changes: 5 additions & 2 deletions packages/dtls/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "werift-dtls",
"version": "0.5.5",
"version": "0.5.6",
"description": "DTLS protocol implementation for Node.js written in TypeScript.",
"homepage": "https://github.com/shinyoshiaki/werift-dtls",
"repository": {
Expand All @@ -13,6 +13,9 @@
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "rm -rf lib && npm run format && tsc -p ./tsconfig.production.json",
"ci": "npm run type && npm run test",
Expand All @@ -28,10 +31,10 @@
},
"dependencies": {
"@fidm/x509": "^1.2.1",
"@noble/curves": "^1.3.0",
"@peculiar/x509": "^1.9.2",
"@shinyoshiaki/binary-data": "^0.6.1",
"date-fns": "^2.29.3",
"@noble/curves": "^1.3.0",
"lodash": "^4.17.21",
"rx.mini": "^1.2.2",
"tweetnacl": "^1.0.3"
Expand Down
3 changes: 1 addition & 2 deletions packages/ice/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "werift-ice",
"version": "0.2.0",
"version": "0.2.1",
"description": "ICE(Interactive Connectivity Establishment) Implementation for TypeScript (Node.js)",
"homepage": "https://github.com/shinyoshiaki/werift-webrtc/tree/master/packages/ice#readme",
"bugs": {
Expand All @@ -15,7 +15,6 @@
"main": "lib/ice/src/index.js",
"types": "lib/ice/src/index.d.ts",
"files": [
"src",
"lib"
],
"scripts": {
Expand Down
5 changes: 2 additions & 3 deletions packages/rtp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "werift-rtp",
"version": "0.8.3",
"version": "0.8.4",
"description": "RTP,RTCP,SRTP,SRTCP implementation for TypeScript.",
"homepage": "https://github.com/shinyoshiaki/werift-webrtc",
"repository": {
Expand All @@ -24,8 +24,7 @@
"main": "lib/rtp/src/index.js",
"types": "lib/rtp/src/index.d.ts",
"files": [
"lib",
"src"
"lib"
],
"scripts": {
"build": "rm -rf lib && npm run format && tsc -p ./tsconfig.production.json",
Expand Down
7 changes: 5 additions & 2 deletions packages/sctp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "werift-sctp",
"version": "0.0.5",
"version": "0.0.6",
"description": "SCTP protocol implementation for Node.js written in TypeScript.",
"homepage": "https://github.com/shinyoshiaki/werift-sctp",
"repository": {
Expand All @@ -13,11 +13,14 @@
},
"main": "./lib/sctp/src/index.js",
"types": "lib/sctp/src/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "rm -rf lib && npm run format && tsc -p ./tsconfig.production.json",
"ci": "npm run type && npm run lint && npm run test",
"deploy": "npm run build && npm publish",
"client": "ts-node --files --project tsconfig.json examples/client.ts",
"deploy": "npm run build && npm publish",
"format": "biome check --write src",
"server": "ts-node --files --project tsconfig.json examples/server.ts",
"test": "npm run type && vitest run ./tests",
Expand Down
5 changes: 2 additions & 3 deletions packages/webrtc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "werift",
"version": "0.21.9",
"version": "0.21.10",
"description": "WebRTC Implementation for TypeScript (Node.js)",
"keywords": [
"WebRTC",
Expand Down Expand Up @@ -30,8 +30,7 @@
"main": "lib/webrtc/src/index.js",
"types": "lib/webrtc/src/index.d.ts",
"files": [
"lib",
"src"
"lib"
],
"scripts": {
"build": "npm i && rm -rf lib && run-s format compile:*",
Expand Down

0 comments on commit 80763b5

Please sign in to comment.