myte 0.0.49 → 0.0.51

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/README.md CHANGED
@@ -24,9 +24,9 @@ No install:
24
24
  The npm line `added N packages` is a dependency-graph count, not a count of
25
25
  files or Myte features. The public `myte` package is a small command wrapper,
26
26
  `@mytegroupinc/myte-core` contains the CLI implementation, and `undici`
27
- provides portable proxy support. A fresh `0.0.48` install therefore normally
28
- contains three graph nodes; npm may report fewer on an update when dependencies
29
- are already present or deduplicated. Run `myte info` or
27
+ provides portable proxy support. A fresh install therefore normally contains
28
+ three graph nodes; npm may report fewer on an update when dependencies are
29
+ already present or deduplicated. Run `myte info` or
30
30
  `myte --version --verbose` to inspect the exact topology.
31
31
 
32
32
  ## Requirements
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myte",
3
- "version": "0.0.49",
3
+ "version": "0.0.51",
4
4
  "description": "Myte developer CLI.",
5
5
  "type": "commonjs",
6
6
  "license": "MIT",
@@ -9,20 +9,16 @@
9
9
  "THIRD_PARTY_NOTICES.md",
10
10
  "TRADEMARKS.md",
11
11
  "bin",
12
- "scripts",
13
12
  "package.json"
14
13
  ],
15
14
  "bin": {
16
15
  "myte": "bin/myte.js",
17
16
  "mytecody": "bin/mytecody.js"
18
17
  },
19
- "scripts": {
20
- "postinstall": "node scripts/postinstall.js"
21
- },
22
18
  "engines": {
23
19
  "node": ">=18.17"
24
20
  },
25
21
  "dependencies": {
26
- "@mytegroupinc/myte-core": "0.0.49"
22
+ "@mytegroupinc/myte-core": "0.0.51"
27
23
  }
28
24
  }
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env node
2
-
3
- console.log([
4
- "Myte CLI installed successfully.",
5
- "Included: myte and mytecody commands, the Myte API client, and portable proxy support.",
6
- "The MyteCody engine and client assets are downloaded on first `mytecody` coding run.",
7
- "Run `myte --help` to get started.",
8
- ].join("\n"));