@zhin.js/command 1.0.13 → 1.0.14

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 +1 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -11,7 +11,7 @@ Zhin Plugin Runtime 的约定式 Command Feature。它发现 `commands/**/*.ts(x
11
11
  ```ts
12
12
  // commands/gh/issue/list.ts -> gh issue list
13
13
  // commands/赞我.ts -> 赞我
14
- import { defineCommand } from '@zhin.js/command';
14
+ import { defineCommand } from 'zhin.js/command';
15
15
 
16
16
  export default defineCommand({
17
17
  description: 'List GitHub issues',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zhin.js/command",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "description": "Convention-based Command Feature for Zhin Plugin Runtime",
5
5
  "type": "module",
6
6
  "main": "./lib/index.js",
@@ -18,7 +18,7 @@
18
18
  ],
19
19
  "dependencies": {
20
20
  "segment-matcher": "^1.0.5",
21
- "@zhin.js/feature-kit": "1.0.10",
21
+ "@zhin.js/feature-kit": "1.0.11",
22
22
  "@zhin.js/permission": "1.0.2",
23
23
  "@zhin.js/plugin-runtime": "1.1.6"
24
24
  },