{
  "name": "werift-dtls",
  "version": "0.5.7",
  "description": "DTLS protocol implementation for Node.js written in TypeScript.",
  "homepage": "https://github.com/shinyoshiaki/werift-dtls",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/shinyoshiaki/werift-dtls.git"
  },
  "license": "MIT",
  "author": {
    "name": "shinyoshiaki"
  },
  "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",
    "client": "DEBUG=werift* ts-node-dev --files --project tsconfig.json examples/client.ts",
    "dep": "depcheck",
    "deploy": "npm run build && npm publish",
    "format": "biome check --write src tests",
    "server": "DEBUG=werift* ts-node-dev --files --project tsconfig.json examples/server.ts",
    "test": "vitest run ./tests",
    "type": "tsc --noEmit -p .",
    "unused": "organize-imports-cli src/**/*.ts",
    "upgrade-interactive": "npx npm-check-updates -i"
  },
  "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",
    "lodash": "^4.17.21",
    "rx.mini": "^1.2.2",
    "tweetnacl": "^1.0.3"
  },
  "devDependencies": {
    "@types/lodash": "^4.14.191"
  },
  "engines": {
    "node": ">=16"
  },
  "readme": "README.md"
}