@decentnetwork/lan 0.1.199 → 0.1.200

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Binary file
Binary file
Binary file
Binary file
@@ -125,7 +125,7 @@ The native helper is cross-compiled and unit-tested from the main repository.
125
125
 
126
126
  ### Native validation
127
127
 
128
- Release `0.1.199` was validated on real Windows 11 x64 (build 26200) with
128
+ Release `0.1.200` was validated on real Windows 11 x64 (build 26200) with
129
129
  Node.js 24.15.0 on July 15, 2026. The smoke test covered global npm install,
130
130
  Wintun creation, `/32` address and `/16` route, firewall, named-pipe CLI,
131
131
  dora roster, cross-node ICMP and chat, graceful service restart, adapter
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@decentnetwork/lan",
3
- "version": "0.1.199",
3
+ "version": "0.1.200",
4
4
  "description": "Private virtual LAN for self-hosted services and AI agents, built on Elastos Carrier. NAT-traversal, name service, ACL, all over a peer-to-peer mesh — no public IP required.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -61,13 +61,13 @@
61
61
  "scripts": {
62
62
  "build": "tsc -p tsconfig.json && chmod +x dist/cli/index.js && node scripts/build-ui.mjs && node scripts/build-console.mjs",
63
63
  "build:ui": "node scripts/build-ui.mjs",
64
- "build:helper": "cd helper/tun-helper && go build -o ../../bin/tun-helper-$(go env GOOS)-$(go env GOARCH) .",
65
- "build:helper:linux-amd64": "cd helper/tun-helper && GOOS=linux GOARCH=amd64 go build -o ../../bin/tun-helper-linux-amd64 .",
66
- "build:helper:linux-arm64": "cd helper/tun-helper && GOOS=linux GOARCH=arm64 go build -o ../../bin/tun-helper-linux-arm64 .",
67
- "build:helper:darwin-arm64": "cd helper/tun-helper && GOOS=darwin GOARCH=arm64 go build -o ../../bin/tun-helper-darwin-arm64 .",
68
- "build:helper:darwin-amd64": "cd helper/tun-helper && GOOS=darwin GOARCH=amd64 go build -o ../../bin/tun-helper-darwin-amd64 .",
69
- "build:helper:windows-amd64": "mkdir -p bin/windows-amd64 && cd helper/tun-helper && GOOS=windows GOARCH=amd64 go build -o ../../bin/windows-amd64/tun-helper-windows-amd64.exe .",
70
- "build:helper:windows-arm64": "mkdir -p bin/windows-arm64 && cd helper/tun-helper && GOOS=windows GOARCH=arm64 go build -o ../../bin/windows-arm64/tun-helper-windows-arm64.exe .",
64
+ "build:helper": "cd helper/tun-helper && go build -buildvcs=false -o ../../bin/tun-helper-$(go env GOOS)-$(go env GOARCH) .",
65
+ "build:helper:linux-amd64": "cd helper/tun-helper && GOOS=linux GOARCH=amd64 go build -buildvcs=false -o ../../bin/tun-helper-linux-amd64 .",
66
+ "build:helper:linux-arm64": "cd helper/tun-helper && GOOS=linux GOARCH=arm64 go build -buildvcs=false -o ../../bin/tun-helper-linux-arm64 .",
67
+ "build:helper:darwin-arm64": "cd helper/tun-helper && GOOS=darwin GOARCH=arm64 go build -buildvcs=false -o ../../bin/tun-helper-darwin-arm64 .",
68
+ "build:helper:darwin-amd64": "cd helper/tun-helper && GOOS=darwin GOARCH=amd64 go build -buildvcs=false -o ../../bin/tun-helper-darwin-amd64 .",
69
+ "build:helper:windows-amd64": "mkdir -p bin/windows-amd64 && cd helper/tun-helper && GOOS=windows GOARCH=amd64 go build -buildvcs=false -o ../../bin/windows-amd64/tun-helper-windows-amd64.exe .",
70
+ "build:helper:windows-arm64": "mkdir -p bin/windows-arm64 && cd helper/tun-helper && GOOS=windows GOARCH=arm64 go build -buildvcs=false -o ../../bin/windows-arm64/tun-helper-windows-arm64.exe .",
71
71
  "build:helpers:all": "npm run build:helper:linux-amd64 && npm run build:helper:linux-arm64 && npm run build:helper:darwin-arm64 && npm run build:helper:darwin-amd64 && npm run build:helper:windows-amd64 && npm run build:helper:windows-arm64",
72
72
  "fetch:wintun": "node scripts/fetch-wintun.mjs",
73
73
  "verify:wintun": "node scripts/verify-wintun.mjs",