@myooken/license-output 0.3.0 → 0.3.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/README.md +26 -5
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,10 +1,31 @@
1
- # Third-Party License Output for node_modules
1
+ # Deprecated
2
+
3
+ ⚠️ **This package is deprecated.**
4
+ Please use **[`node-module-license-output`](https://www.npmjs.com/package/node-module-license-output)** instead.
5
+
6
+ > This package has been renamed from `@myooken/license-output` to
7
+ > **`node-module-license-output`** to provide a non-scoped, easier-to-discover name.
8
+ > All new development and maintenance continue in the new package.
9
+
10
+ ## Migration
11
+
12
+ ### Install
13
+
14
+ ```bash
15
+ npm install node-module-license-output
16
+ ```
17
+
18
+ ### Replace
2
19
 
3
- [![npm version](https://img.shields.io/npm/v/@myooken/license-output.svg)](https://www.npmjs.com/package/@myooken/license-output)
4
- [![npm downloads](https://img.shields.io/npm/dm/@myooken/license-output.svg)](https://www.npmjs.com/package/@myooken/license-output)
5
- [![node](https://img.shields.io/node/v/@myooken/license-output.svg)](https://www.npmjs.com/package/@myooken/license-output)
20
+ * Before: `npm install @myooken/license-output`
21
+ * After : `npm install node-module-license-output`
22
+
23
+ > Note: Update the package name in your CLI usage and imports from
24
+ > `@myooken/license-output` → `node-module-license-output`.
25
+
26
+ # Third-Party License Output for node_modules
6
27
 
7
- https://www.npmjs.com/package/@myooken/license-output
28
+ https://www.npmjs.com/package/node-module-license-output
8
29
 
9
30
  ### What is this?
10
31
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@myooken/license-output",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Generate third-party-license markdown by scanning licenses in node_modules.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -25,7 +25,7 @@
25
25
  ".": "./src/core.js"
26
26
  },
27
27
  "bin": {
28
- "third-party-license": "./src/cli.js"
28
+ "third-party-license": "src/cli.js"
29
29
  },
30
30
  "files": [
31
31
  "src",