napcat-plugin-debug-cli 1.0.0

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/cli.mjs +5416 -0
  2. package/package.json +21 -0
package/package.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "napcat-plugin-debug-cli",
3
+ "version": "1.0.0",
4
+ "type": "module",
5
+ "description": "NapCat 插件调试 CLI — 连接调试服务实现热重载",
6
+ "author": "NapNeko",
7
+ "license": "MIT",
8
+ "bin": {
9
+ "napcat-debug": "./cli.mjs"
10
+ },
11
+ "files": [
12
+ "cli.mjs"
13
+ ],
14
+ "keywords": [
15
+ "napcat",
16
+ "plugin",
17
+ "debug",
18
+ "hmr",
19
+ "hot-reload"
20
+ ]
21
+ }