{
  "name": "@jsprismarine/raknet",
  "version": "0.13.1",
  "description": "Basic RakNet implementation written in TypeScript",
  "sideEffects": false,
  "type": "module",
  "files": [
    "dist",
    "CHANGELOG.md",
    "README.md"
  ],
  "main": "./dist/index.cjs.cjs",
  "module": "./dist/index.es.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.es.js",
      "module": "./dist/index.es.js",
      "require": "./dist/index.cjs.cjs"
    },
    "./*": {
      "types": "./dist/*.d.ts",
      "import": "./dist/*.es.js",
      "module": "./dist/*.es.js",
      "require": "./dist/*.cjs.cjs"
    },
    "./package.json": "./package.json"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/JSPrismarine/JSPrismarine.git"
  },
  "keywords": [
    "nodejs",
    "raknet"
  ],
  "author": "JSPrismarine",
  "license": "MIT",
  "homepage": "https://github.com/JSPrismarine/JSPrismarine/tree/master/packages/raknet",
  "dependencies": {
    "@jsprismarine/jsbinaryutils": "5.5.3"
  },
  "devDependencies": {
    "@types/node": "22.15.3",
    "glob": "11.0.2",
    "rimraf": "6.0.1",
    "typescript": "5.5.2",
    "vite": "6.3.4",
    "vitest": "3.1.2"
  },
  "scripts": {
    "clean": "rimraf dist jsp *.tsbuildinfo vite.config.ts.timestamp-* .tsup .turbo",
    "build": "vite build",
    "build:watch": "vite build --watch",
    "typecheck": "tsc -noEmit"
  }
}