@rync/moorline-discord-default 0.0.2

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/index.mjs ADDED
@@ -0,0 +1,9 @@
1
+ import manifest from './manifest.json' with { type: 'json' };
2
+ import distro from './moorline.dist.json' with { type: 'json' };
3
+
4
+ export { manifest, distro };
5
+ export default {
6
+ id: manifest.id,
7
+ manifest,
8
+ distro
9
+ };
package/manifest.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "id": "rync/discord-default",
3
+ "name": "rync/discord-default",
4
+ "version": "0.0.2",
5
+ "type": "bundle",
6
+ "description": "Rync Discord transport and Discord runtime features.",
7
+ "members": [
8
+ {
9
+ "kind": "transport",
10
+ "packageId": "rync/discord",
11
+ "version": "~0.0.2",
12
+ "activation": "select"
13
+ },
14
+ {
15
+ "kind": "plugin",
16
+ "packageId": "rync/discord-runtime",
17
+ "version": "~0.0.2",
18
+ "activation": "enable"
19
+ }
20
+ ]
21
+ }
@@ -0,0 +1,26 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "display": {
4
+ "name": "Discord Default",
5
+ "description": "Discord transport plus Moorline runtime commands and message routing.",
6
+ "version": "0.0.2",
7
+ "category": "Recommended Transports",
8
+ "tags": [
9
+ "rync",
10
+ "discord",
11
+ "bundle",
12
+ "transport"
13
+ ],
14
+ "publisher": "Rync"
15
+ },
16
+ "distribution": {
17
+ "audiences": [
18
+ "setup"
19
+ ],
20
+ "setupOrder": 10
21
+ },
22
+ "release": {
23
+ "recommendedRef": "v0.0.2",
24
+ "channel": "stable"
25
+ }
26
+ }
package/package.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "@rync/moorline-discord-default",
3
+ "version": "0.0.2",
4
+ "description": "Rync Discord transport and Discord runtime features.",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "main": "./index.mjs",
8
+ "exports": {
9
+ ".": "./index.mjs"
10
+ },
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "git+ssh://git@github.com/Moorline/packages.git",
14
+ "directory": "packages/discord-default"
15
+ },
16
+ "publishConfig": {
17
+ "access": "public"
18
+ },
19
+ "keywords": [
20
+ "moorline-package",
21
+ "moorline-kind-bundle",
22
+ "moorline-namespace-rync",
23
+ "moorline-id-rync-discord-default",
24
+ "rync",
25
+ "discord",
26
+ "bundle",
27
+ "transport"
28
+ ],
29
+ "moorline": {
30
+ "schemaVersion": 1,
31
+ "packageId": "rync/discord-default",
32
+ "kind": "bundle",
33
+ "manifestPath": "manifest.json",
34
+ "distroPath": "moorline.dist.json"
35
+ }
36
+ }