@sockethub/server 5.0.0-alpha.7 → 5.0.0-alpha.8
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.
- package/dist/defaults.json +36 -0
- package/dist/index.js +15 -15
- package/dist/index.js.map +1 -1
- package/dist/platform.js +103625 -0
- package/dist/platform.js.map +1435 -0
- package/package.json +14 -14
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://sockethub.org/schemas/3.0.0-alpha.4/sockethub-config.json",
|
|
3
|
+
"examples": true,
|
|
4
|
+
"log_file": "",
|
|
5
|
+
"packageConfig": {
|
|
6
|
+
"@sockethub/activity-streams": {
|
|
7
|
+
"specialObjs": ["credentials"],
|
|
8
|
+
"failOnUnknownObjectProperties": true
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"platforms": [
|
|
12
|
+
"@sockethub/platform-dummy",
|
|
13
|
+
"@sockethub/platform-feeds",
|
|
14
|
+
"@sockethub/platform-irc",
|
|
15
|
+
"@sockethub/platform-metadata",
|
|
16
|
+
"@sockethub/platform-xmpp"
|
|
17
|
+
],
|
|
18
|
+
"public": {
|
|
19
|
+
"protocol": "http",
|
|
20
|
+
"host": "localhost",
|
|
21
|
+
"port": 10550,
|
|
22
|
+
"path": "/"
|
|
23
|
+
},
|
|
24
|
+
"redis": {
|
|
25
|
+
"url": "redis://127.0.0.1:6379"
|
|
26
|
+
},
|
|
27
|
+
"sentry": {
|
|
28
|
+
"dsn": "",
|
|
29
|
+
"traceSampleRate": 1.0
|
|
30
|
+
},
|
|
31
|
+
"sockethub": {
|
|
32
|
+
"port": 10550,
|
|
33
|
+
"host": "localhost",
|
|
34
|
+
"path": "/sockethub"
|
|
35
|
+
}
|
|
36
|
+
}
|
package/dist/index.js
CHANGED
|
@@ -81826,7 +81826,7 @@ var require_package3 = __commonJS((exports, module) => {
|
|
|
81826
81826
|
module.exports = {
|
|
81827
81827
|
name: "@sockethub/server",
|
|
81828
81828
|
description: "A polyglot messaging service, server libraries",
|
|
81829
|
-
version: "5.0.0-alpha.
|
|
81829
|
+
version: "5.0.0-alpha.8",
|
|
81830
81830
|
type: "module",
|
|
81831
81831
|
private: false,
|
|
81832
81832
|
author: "Nick Jennings <nick@silverbucket.net>",
|
|
@@ -81875,11 +81875,11 @@ var require_package3 = __commonJS((exports, module) => {
|
|
|
81875
81875
|
homepage: "https://sockethub.org",
|
|
81876
81876
|
dependencies: {
|
|
81877
81877
|
"@sentry/bun": "^10.36.0",
|
|
81878
|
-
"@sockethub/activity-streams": "^4.4.0-alpha.
|
|
81879
|
-
"@sockethub/client": "^5.0.0-alpha.
|
|
81880
|
-
"@sockethub/crypto": "^1.0.0-alpha.
|
|
81881
|
-
"@sockethub/data-layer": "^1.0.0-alpha.
|
|
81882
|
-
"@sockethub/schemas": "^3.0.0-alpha.
|
|
81878
|
+
"@sockethub/activity-streams": "^4.4.0-alpha.8",
|
|
81879
|
+
"@sockethub/client": "^5.0.0-alpha.8",
|
|
81880
|
+
"@sockethub/crypto": "^1.0.0-alpha.8",
|
|
81881
|
+
"@sockethub/data-layer": "^1.0.0-alpha.8",
|
|
81882
|
+
"@sockethub/schemas": "^3.0.0-alpha.8",
|
|
81883
81883
|
"body-parser": "^1.20.4",
|
|
81884
81884
|
chalk: "^5.6.2",
|
|
81885
81885
|
debug: "^4.4.3",
|
|
@@ -81891,7 +81891,7 @@ var require_package3 = __commonJS((exports, module) => {
|
|
|
81891
81891
|
"socket.io": "^4.7.5"
|
|
81892
81892
|
},
|
|
81893
81893
|
scripts: {
|
|
81894
|
-
build: "bun build src/index.ts --outdir dist --target node --format esm --sourcemap=external",
|
|
81894
|
+
build: "bun build src/index.ts --outdir dist --target node --format esm --sourcemap=external && bun build src/platform.ts --outdir dist --target node --format esm --sourcemap=external && cp src/defaults.json dist/defaults.json",
|
|
81895
81895
|
clean: "rm -rf dist",
|
|
81896
81896
|
dev: "DEBUG=sockethub* bun run --hot ./bin/sockethub --examples",
|
|
81897
81897
|
start: "DEBUG=sockethub* bun run ./bin/sockethub"
|
|
@@ -81909,14 +81909,14 @@ var require_package3 = __commonJS((exports, module) => {
|
|
|
81909
81909
|
"web-streams-polyfill": "^3.3.3"
|
|
81910
81910
|
},
|
|
81911
81911
|
optionalDependencies: {
|
|
81912
|
-
"@sockethub/examples": "^1.0.0-alpha.
|
|
81913
|
-
"@sockethub/platform-dummy": "^3.0.0-alpha.
|
|
81914
|
-
"@sockethub/platform-feeds": "^4.0.0-alpha.
|
|
81915
|
-
"@sockethub/platform-irc": "^4.0.0-alpha.
|
|
81916
|
-
"@sockethub/platform-metadata": "^1.0.1-alpha.
|
|
81917
|
-
"@sockethub/platform-xmpp": "^5.0.0-alpha.
|
|
81912
|
+
"@sockethub/examples": "^1.0.0-alpha.8",
|
|
81913
|
+
"@sockethub/platform-dummy": "^3.0.0-alpha.8",
|
|
81914
|
+
"@sockethub/platform-feeds": "^4.0.0-alpha.8",
|
|
81915
|
+
"@sockethub/platform-irc": "^4.0.0-alpha.8",
|
|
81916
|
+
"@sockethub/platform-metadata": "^1.0.1-alpha.3",
|
|
81917
|
+
"@sockethub/platform-xmpp": "^5.0.0-alpha.8"
|
|
81918
81918
|
},
|
|
81919
|
-
gitHead: "
|
|
81919
|
+
gitHead: "df82c84a3724c92a9b50e46e9205fa57d834a951"
|
|
81920
81920
|
};
|
|
81921
81921
|
});
|
|
81922
81922
|
|
|
@@ -166462,4 +166462,4 @@ export {
|
|
|
166462
166462
|
server
|
|
166463
166463
|
};
|
|
166464
166464
|
|
|
166465
|
-
//# debugId=
|
|
166465
|
+
//# debugId=21B69D839DEF6D7264756E2164756E21
|