@initx-plugin/manager 0.0.10 → 0.0.11

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 +3 -1
  2. package/package.json +7 -3
package/README.md CHANGED
@@ -5,9 +5,11 @@
5
5
  ## Usage
6
6
 
7
7
  ```bash
8
- npm i @initx-plugin/manager -g
8
+ npx initx plugin <command>
9
9
  ```
10
10
 
11
+ This command will automatically install `@initx-plugin/manager` if not already installed.
12
+
11
13
  ### List
12
14
 
13
15
  ```bash
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@initx-plugin/manager",
3
3
  "type": "module",
4
- "version": "0.0.10",
4
+ "version": "0.0.11",
5
5
  "description": "initx plugin manager",
6
6
  "author": "imba97",
7
7
  "license": "MIT",
@@ -23,9 +23,11 @@
23
23
  "files": [
24
24
  "dist"
25
25
  ],
26
+ "peerDependencies": {
27
+ "@initx-plugin/core": "*",
28
+ "@initx-plugin/utils": "*"
29
+ },
26
30
  "dependencies": {
27
- "@initx-plugin/core": "^0.0.35",
28
- "@initx-plugin/utils": "^0.0.35",
29
31
  "columnify": "^1.6.0",
30
32
  "fs-extra": "^11.3.0",
31
33
  "pathe": "^2.0.3",
@@ -33,6 +35,8 @@
33
35
  },
34
36
  "devDependencies": {
35
37
  "@imba97/eslint-config": "^0.0.6",
38
+ "@initx-plugin/core": "*",
39
+ "@initx-plugin/utils": "*",
36
40
  "@types/columnify": "^1.5.4",
37
41
  "@types/fs-extra": "^11.0.4",
38
42
  "@types/node": "^22.13.14",