segundo commit

This commit is contained in:
root 2025-11-06 19:19:45 +00:00
parent 6b8b75863a
commit d2e79d63a5
13601 changed files with 1117197 additions and 0 deletions

120
node_modules/ssb-server/package.json generated vendored Normal file
View file

@ -0,0 +1,120 @@
{
"name": "ssb-server",
"description": "network protocol layer for secure-scuttlebutt",
"version": "15.3.0",
"homepage": "https://github.com/ssbc/ssb-server",
"repository": {
"type": "git",
"url": "git://github.com/ssbc/ssb-server.git"
},
"bin": {
"sbot": "./bin.js",
"ssb-server": "./bin.js"
},
"scripts": {
"start": "node bin start",
"prepublishOnly": "npm test",
"test": "set -e; for t in test/*.js; do echo TEST $t; node $t; done && compatibility",
"reinstall": "rm -rf node_modules package-lock.json npm-shrinkwrap.json; export npm_config_package_lock=true; npm install && npm dedupe && npm shrinkwrap",
"coverage": "nyc --reporter=lcov npm test"
},
"dependencies": {
"bash-color": "~0.0.3",
"broadcast-stream": "^0.2.1",
"cont": "~1.0.3",
"cross-spawn": "^6.0.5",
"debug": "^4.1.1",
"deep-equal": "^1.0.1",
"explain-error": "^1.0.3",
"has-network": "0.0.1",
"ip": "^1.1.5",
"mdmanifest": "^1.0.8",
"minimist": "^1.1.3",
"mkdirp": "~0.5.0",
"multiblob": "^1.13.0",
"multiserver": "^3.3.1",
"multiserver-address": "^1.0.1",
"muxrpc-validation": "^3",
"muxrpcli": "3",
"mv": "^2.1.1",
"osenv": "^0.1.5",
"pull-cat": "~1.1.5",
"pull-file": "^1.0.0",
"pull-many": "~1.0.6",
"pull-pushable": "^2.2.0",
"pull-stream": "^3.6.2",
"rimraf": "^2.4.2",
"secret-stack": "^6.3.1",
"ssb-blobs": "1.2.2",
"ssb-caps": "^1.0.1",
"ssb-client": "^4.7.9",
"ssb-config": "^3.2.5",
"ssb-db": "19.2.0",
"ssb-ebt": "^5.6.1",
"ssb-friends": "^4.1.0",
"ssb-gossip": "^1.1.0",
"ssb-invite": "^2.1.2",
"ssb-keys": "^7.1.1",
"ssb-links": "^3.0.10",
"ssb-local": "^1.0.0",
"ssb-logging": "^1.0.0",
"ssb-master": "^1.0.2",
"ssb-no-auth": "^1.0.0",
"ssb-onion": "^1.0.0",
"ssb-ooo": "^1.3.0",
"ssb-plugins": "1.0.0",
"ssb-query": "^2.4.0",
"ssb-ref": "^2.13.9",
"ssb-replicate": "^1.3.0",
"ssb-unix-socket": "^1.0.0",
"ssb-ws": "^6.2.1",
"stream-to-pull-stream": "^1.6.10",
"zerr": "^1.0.0"
},
"devDependencies": {
"cat-names": "^2.0.0",
"compatibility": "^1.0.0",
"dog-names": "~1.0.2",
"hexpp": "^2.0.0",
"interleavings": "^1.0.0",
"npm-install-package": "^2.1.0",
"nyc": "^13.2.0",
"pull-abortable": "^4.1.1",
"pull-bitflipper": "^0.1.0",
"pull-paramap": "^1.2.2",
"rng": "^0.2.2",
"run-series": "^1.1.8",
"semver": "^5.6.0",
"ssb-feed": "^2.3.0",
"ssb-generate": "^1.0.1",
"ssb-validate": "^4",
"tape": "^4.9.1",
"typewiselite": "^1.0.0"
},
"nyc": {
"exclude": [
"!**/node_modules/",
"**/node_modules/**/{test,node_modules}/"
],
"include": [
"*.js",
"lib/*.js",
"plugins/*.js",
"node_modules/{ssb-*,flume*,secret-stack,muxrpc,multiserver}/*.js",
"node_modules/{ssb-*,flume*,secret-stack,muxrpc,multiserver}/{util,lib,frame,indexes}/*.js"
]
},
"compatibility": [
"ssb-gossip",
"ssb-friends",
"ssb-blobs",
"ssb-invite",
"ssb-replicate",
"ssb-ebt",
"ssb-db",
"ssb-ooo",
"ssb-plugins"
],
"author": "Paul Frazee <pfrazee@gmail.com>",
"license": "MIT"
}