@noirhare/dsh-bundle 0.0.1

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.
Files changed (2) hide show
  1. package/cordis.patch.yml +19 -0
  2. package/package.json +28 -0
@@ -0,0 +1,19 @@
1
+ - id: "webserver"
2
+ disable: true
3
+
4
+ - id: "agent-presets"
5
+ disable: true
6
+
7
+ - insert:
8
+ - name: "@noirhare/dsh-host-webserver"
9
+ inject:
10
+ - webStartup
11
+ config:
12
+ host: !!js ctx.webStartup.host ?? '127.0.0.1'
13
+ port: !!js ctx.webStartup.port ?? 3080
14
+
15
+ - name: "@noirhare/dsh-agent-presets"
16
+ config:
17
+ default: standard
18
+
19
+ - name: "@norihare/dsh-nr-agent-presets"
package/package.json ADDED
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "@noirhare/dsh-bundle",
3
+ "version": "0.0.1",
4
+ "author": "NoirHare",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/NoirHare/dsh-bundle.git",
9
+ "directory": "bundle"
10
+ },
11
+ "type": "module",
12
+ "files": [
13
+ "cordis.patch.yml"
14
+ ],
15
+ "publishConfig": {
16
+ "access": "public"
17
+ },
18
+ "dependencies": {
19
+ "@noirhare/dsh-host-webserver": "^0.0.1",
20
+ "@noirhare/dsh-agent-presets": "^0.0.1",
21
+ "@noirhare/dsh-nr-agent-presets": "^0.0.1"
22
+ },
23
+ "dsh": {
24
+ "bundle": {
25
+ "patch": "./cordis.patch.yml"
26
+ }
27
+ }
28
+ }