This commit is contained in:
Raven Scott 2024-10-28 15:38:48 -04:00
parent 5e7dec1ad4
commit 74dc173319

View File

@ -1,28 +1,22 @@
{
"name": "p2ns",
"version": "1.0.0",
"description": "Peer-to-Peer DNS system with Holesail tunneling",
"main": "index.js",
"description": "This project implements a firewall-resistant, peer-to-peer (P2P) DNS system that leverages UDP hole-punching to bypass common network restrictions, including firewalls, NAT, and CGNAT. Built in Node.js, it integrates with Holesail for tunneling, provides seamless DNS and HTTP proxying, and supports both public and private P2P networks.",
"main": "p2ns.js",
"scripts": {
"start": "node index.js"
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://git.ssh.surf/snxraven/p2ns.git"
},
"author": "Raven Scott",
"license": "MIT",
"license": "ISC",
"dependencies": {
"child_process": "^1.0.2",
"dgram": "^1.0.1",
"dns-packet": "^5.5.2",
"holesail-client": "^1.0.0",
"corestore": "^3.2.0",
"hyperswarm": "^2.11.0",
"http": "^0.0.1-security",
"b4a": "^2.1.1",
"crypto": "^1.0.1",
"net": "^1.0.2"
},
"devDependencies": {},
"engines": {
"node": ">=16"
"b4a": "^1.6.7",
"corestore": "^6.18.4",
"dns-packet": "^5.6.1",
"holesail-client": "^1.1.4",
"hyperswarm": "^4.8.4"
}
}
}