{
  "name": "@vibecook/truffle",
  "version": "0.7.2",
  "description": "Mesh networking for local-first apps, built on Tailscale",
  "license": "MIT",
  "author": "James Yong",
  "repository": {
    "type": "git",
    "url": "https://github.com/jamesyong-42/truffle.git",
    "directory": "packages/core"
  },
  "homepage": "https://github.com/jamesyong-42/truffle#readme",
  "bugs": {
    "url": "https://github.com/jamesyong-42/truffle/issues"
  },
  "keywords": [
    "mesh",
    "networking",
    "tailscale",
    "local-first",
    "p2p",
    "napi",
    "rust"
  ],
  "engines": {
    "node": ">=18"
  },
  "publishConfig": {
    "access": "public"
  },
  "sideEffects": false,
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "scripts",
    "sidecar-checksums.json"
  ],
  "dependencies": {
    "@vibecook/truffle-native": "0.7.2"
  },
  "peerDependencies": {
    "ws": ">=8"
  },
  "peerDependenciesMeta": {
    "ws": {
      "optional": true
    }
  },
  "optionalDependencies": {
    "@vibecook/truffle-sidecar-darwin-arm64": "0.7.2",
    "@vibecook/truffle-sidecar-linux-x64": "0.7.2",
    "@vibecook/truffle-sidecar-linux-arm64": "0.7.2",
    "@vibecook/truffle-sidecar-darwin-x64": "0.7.2",
    "@vibecook/truffle-sidecar-win32-x64": "0.7.2"
  },
  "devDependencies": {
    "@types/ws": "^8.5.13",
    "typescript": "^5.7.0",
    "ws": "^8.18.0"
  },
  "scripts": {
    "build": "tsc",
    "clean": "rm -rf dist",
    "typecheck": "tsc --noEmit",
    "test": "node --test \"test/**/*.test.cjs\"",
    "postinstall": "node scripts/postinstall.cjs"
  }
}