{
  "name": "werift",
  "version": "0.23.0",
  "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": {
    "name": "shinyoshiaki"
  },
  "exports": {
    ".": {
      "types": "./lib/webrtc/src/index.d.ts",
      "require": "./lib/webrtc/src/index.js",
      "import": "./lib/index.mjs"
    },
    "./nonstandard": {
      "types": "./lib/webrtc/src/nonstandard/index.d.ts",
      "require": "./lib/webrtc/src/nonstandard/index.js",
      "import": "./lib/nonstandard/index.mjs"
    }
  },
  "main": "lib/webrtc/src/index.js",
  "types": "lib/webrtc/src/index.d.ts",
  "files": [
    "lib"
  ],
  "scripts": {
    "build": "npm i && rm -rf lib && run-s format compile:*",
    "compile:cjs": "tsc -p ./tsconfig.production.json",
    "compile:esm": "esbuild src/index.ts src/nonstandard/index.ts --bundle --packages=external --platform=node --format=esm --target=es2022 --outdir=lib --out-extension:.js=.mjs && node lib/index.mjs",
    "depcheck": "npx depcheck --ignores='@typescript-eslint/*,eslint-*'",
    "deploy": "npm run build && npm publish && cd ../../import-test && npm test",
    "deploy:alpha": "npm run build && npm publish --tag alpha",
    "doc": "rm -rf doc && typedoc --excludePrivate --disableSources --excludeInternal --plugin typedoc-plugin-markdown --out doc ./src/index.ts",
    "format": "biome check --write src tests",
    "knip": "knip",
    "test": "vitest run ./tests",
    "type": "tsc --noEmit --project ./tsconfig.json",
    "unused": "organize-imports-cli src/**/*.ts",
    "upgrade-interactive": "npx npm-check-updates -i"
  },
  "dependencies": {
    "@fidm/x509": "^1.2.1",
    "@minhducsun2002/leb128": "^1.0.0",
    "@noble/curves": "^1.8.1",
    "@peculiar/x509": "^1.12.3",
    "@shinyoshiaki/binary-data": "^0.6.1",
    "@shinyoshiaki/jspack": "^0.0.6",
    "fast-deep-equal": "^3.1.3",
    "aes-js": "^3.1.2",
    "buffer": "^6.0.3",
    "debug": "4.4.0",
    "int64-buffer": "1.1.0",
    "ip": "^2.0.1",
    "mp4box": "^0.5.3",
    "multicast-dns": "^7.2.5",
    "tweetnacl": "^1.0.3",
    "werift-common": "*",
    "werift-dtls": "*",
    "werift-ice": "*",
    "werift-rtp": "*",
    "werift-sctp": "*"
  },
  "engines": {
    "node": ">=16"
  },
  "readme": "README.md"
}