{
  "name": "werift-sctp",
  "version": "0.0.11",
  "description": "SCTP protocol implementation for Node.js written in TypeScript.",
  "homepage": "https://github.com/shinyoshiaki/werift-sctp",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/shinyoshiaki/werift-sctp.git"
  },
  "license": "MIT",
  "author": {
    "name": "shinyoshiaki"
  },
  "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",
    "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",
    "type": "tsc --noEmit -p .",
    "unused": "organize-imports-cli **/*.ts",
    "upgrade-interactive": "npx npm-check-updates -i"
  },
  "dependencies": {
    "@shinyoshiaki/jspack": "^0.0.6"
  },
  "engines": {
    "node": ">=10"
  },
  "readme": "README.md"
}