@sockethub/examples 1.0.0-alpha.10
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/LICENSE +165 -0
- package/README.md +174 -0
- package/build/_app/env.js +1 -0
- package/build/_app/immutable/assets/0.JUA-HkH6.css +1 -0
- package/build/_app/immutable/assets/sockethub.Bpv0Wt6b.css +1 -0
- package/build/_app/immutable/chunks/B-2myMF5.js +1 -0
- package/build/_app/immutable/chunks/BBdxXcNs.js +23 -0
- package/build/_app/immutable/chunks/BhL0iima.js +4 -0
- package/build/_app/immutable/chunks/BnKTx64M.js +1 -0
- package/build/_app/immutable/chunks/BqKPKu0n.js +1 -0
- package/build/_app/immutable/chunks/Br1aAxXP.js +1 -0
- package/build/_app/immutable/chunks/C1LF9VyP.js +1 -0
- package/build/_app/immutable/chunks/CARmnL8B.js +1 -0
- package/build/_app/immutable/chunks/CC-fhLYv.js +1 -0
- package/build/_app/immutable/chunks/CFHe0i8O.js +1 -0
- package/build/_app/immutable/chunks/Cf7Xaqef.js +1 -0
- package/build/_app/immutable/chunks/Ciq9INsC.js +1 -0
- package/build/_app/immutable/chunks/CoHdmBcD.js +1 -0
- package/build/_app/immutable/chunks/D_xw8KSE.js +1 -0
- package/build/_app/immutable/chunks/DqdrLdzV.js +2 -0
- package/build/_app/immutable/chunks/P3PHXZz3.js +2 -0
- package/build/_app/immutable/entry/app.DgSDqHHR.js +2 -0
- package/build/_app/immutable/entry/start.CTdg5BqQ.js +1 -0
- package/build/_app/immutable/nodes/0.i_jJRDZB.js +39 -0
- package/build/_app/immutable/nodes/1.BlhUuP-P.js +1 -0
- package/build/_app/immutable/nodes/2.CggxtO4e.js +5 -0
- package/build/_app/immutable/nodes/3.1s4AoiT3.js +1 -0
- package/build/_app/immutable/nodes/4.Ck-0hor4.js +1 -0
- package/build/_app/immutable/nodes/5.BV2I1j0o.js +1 -0
- package/build/_app/immutable/nodes/6.PZ-pmrq7.js +1 -0
- package/build/_app/immutable/nodes/7.C7IiHO6h.js +1 -0
- package/build/_app/version.json +1 -0
- package/build/config.json +9 -0
- package/build/dummy.html +38 -0
- package/build/favicon.ico +0 -0
- package/build/feed.xml +29 -0
- package/build/feeds.html +38 -0
- package/build/index.html +38 -0
- package/build/irc.html +38 -0
- package/build/metadata.html +38 -0
- package/build/sockethub-logo.svg +147 -0
- package/build/xmpp.html +38 -0
- package/package.json +63 -0
package/build/xmpp.html
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<link rel="icon" href="./favicon.ico" />
|
|
6
|
+
<meta name="viewport" content="width=device-width" />
|
|
7
|
+
|
|
8
|
+
<link rel="modulepreload" href="./_app/immutable/entry/start.CTdg5BqQ.js">
|
|
9
|
+
<link rel="modulepreload" href="./_app/immutable/chunks/BqKPKu0n.js">
|
|
10
|
+
<link rel="modulepreload" href="./_app/immutable/chunks/Ciq9INsC.js">
|
|
11
|
+
<link rel="modulepreload" href="./_app/immutable/chunks/CARmnL8B.js">
|
|
12
|
+
<link rel="modulepreload" href="./_app/immutable/chunks/Br1aAxXP.js">
|
|
13
|
+
<link rel="modulepreload" href="./_app/immutable/entry/app.DgSDqHHR.js">
|
|
14
|
+
<link rel="modulepreload" href="./_app/immutable/chunks/DqdrLdzV.js">
|
|
15
|
+
<link rel="modulepreload" href="./_app/immutable/chunks/Cf7Xaqef.js">
|
|
16
|
+
<link rel="modulepreload" href="./_app/immutable/chunks/CC-fhLYv.js">
|
|
17
|
+
</head>
|
|
18
|
+
<body class="bg-white-100">
|
|
19
|
+
<div class="container mx-auto pl-2 pr-2 pt-2">
|
|
20
|
+
<script>
|
|
21
|
+
{
|
|
22
|
+
__sveltekit_s9fgxq = {
|
|
23
|
+
base: new URL(".", location).pathname.slice(0, -1)
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
const element = document.currentScript.parentElement;
|
|
27
|
+
|
|
28
|
+
Promise.all([
|
|
29
|
+
import("./_app/immutable/entry/start.CTdg5BqQ.js"),
|
|
30
|
+
import("./_app/immutable/entry/app.DgSDqHHR.js")
|
|
31
|
+
]).then(([kit, app]) => {
|
|
32
|
+
kit.start(app, element);
|
|
33
|
+
});
|
|
34
|
+
}
|
|
35
|
+
</script>
|
|
36
|
+
</div>
|
|
37
|
+
</body>
|
|
38
|
+
</html>
|
package/package.json
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@sockethub/examples",
|
|
3
|
+
"version": "1.0.0-alpha.10",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"files": [
|
|
6
|
+
"build"
|
|
7
|
+
],
|
|
8
|
+
"engines": {
|
|
9
|
+
"bun": ">=1.2.4"
|
|
10
|
+
},
|
|
11
|
+
"keywords": [
|
|
12
|
+
"sockethub",
|
|
13
|
+
"example",
|
|
14
|
+
"web app",
|
|
15
|
+
"xmpp",
|
|
16
|
+
"irc",
|
|
17
|
+
"rss",
|
|
18
|
+
"atom"
|
|
19
|
+
],
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "git+https://github.com/sockethub/sockethub.git",
|
|
23
|
+
"directory": "packages/examples"
|
|
24
|
+
},
|
|
25
|
+
"homepage": "https://github.com/sockethub/sockethub/tree/master/packages/examples",
|
|
26
|
+
"author": "Nick Jennings <nick@silverbucket.net>",
|
|
27
|
+
"license": "LGPL-3.0+",
|
|
28
|
+
"publishConfig": {
|
|
29
|
+
"access": "public"
|
|
30
|
+
},
|
|
31
|
+
"scripts": {
|
|
32
|
+
"dev": "bunx --bun vite dev",
|
|
33
|
+
"build": "bunx --bun vite build",
|
|
34
|
+
"test": "bun run test:unit",
|
|
35
|
+
"test:integration": "bunx --bun playwright test",
|
|
36
|
+
"test:unit": "bunx --bun vitest run",
|
|
37
|
+
"preview": "bunx --bun vite preview",
|
|
38
|
+
"check": "bunx --bun svelte-kit sync && bunx --bun svelte-check --tsconfig ./tsconfig.json",
|
|
39
|
+
"check:watch": "bunx --bun svelte-kit sync && bunx --bun svelte-check --tsconfig ./tsconfig.json --watch"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@playwright/test": "^1.57.0",
|
|
43
|
+
"@sockethub/client": "^5.0.0-alpha.10",
|
|
44
|
+
"@sveltejs/adapter-static": "^3.0.10",
|
|
45
|
+
"@sveltejs/kit": "^2.50.0",
|
|
46
|
+
"@sveltejs/vite-plugin-svelte": "^5.1.1",
|
|
47
|
+
"@tailwindcss/postcss": "^4.1.18",
|
|
48
|
+
"autoprefixer": "^10.4.23",
|
|
49
|
+
"globals": "^15.15.0",
|
|
50
|
+
"highlight.js": "^11.11.1",
|
|
51
|
+
"postcss": "^8.5.6",
|
|
52
|
+
"socket.io-client": "^4.8.3",
|
|
53
|
+
"svelte": "^5.47.1",
|
|
54
|
+
"svelte-check": "^4.3.5",
|
|
55
|
+
"svelte-highlight": "^7.9.0",
|
|
56
|
+
"tailwindcss": "^4.1.18",
|
|
57
|
+
"typescript": "^5.9.3",
|
|
58
|
+
"update-browserslist-db": "^1.2.3",
|
|
59
|
+
"vite": "^6.4.1",
|
|
60
|
+
"vitest": "^3.2.4"
|
|
61
|
+
},
|
|
62
|
+
"gitHead": "8e1abf116b2a6b57d33c6e1a4af9143870517bae"
|
|
63
|
+
}
|