@shun-js/shun-cli 0.0.7 → 0.0.9

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 (3) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +17 -1
  3. package/package.json +18 -5
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2023 qiaowenbin<uikoo9@qq.com>
3
+ Copyright (c) 2025 qiaowenbin<uikoo9@qq.com>
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -1,3 +1,19 @@
1
- ## @shun-js/shun-cli
1
+ # @shun-js/shun-cli
2
2
 
3
3
  shun.js cli tool
4
+
5
+ ## 安装
6
+
7
+ ```shell
8
+ npm i -g @shun-js/shun-cli
9
+ ```
10
+
11
+ ## 启动服务
12
+
13
+ ```shell
14
+ # 启动,在feishu-grafana-alert.json所在目录下
15
+ shunjs start @shun-js/feishu-grafana-alert
16
+
17
+ # 可以启动多个服务
18
+ shunjs start @shun-js/feishu-grafana-alert @shun-js/xxx
19
+ ```
package/package.json CHANGED
@@ -1,14 +1,27 @@
1
1
  {
2
2
  "name": "@shun-js/shun-cli",
3
- "version": "0.0.7",
3
+ "version": "0.0.9",
4
4
  "description": "shun.js cli",
5
- "files": [
6
- "bin",
7
- "src"
5
+ "keywords": [
6
+ "shun.js",
7
+ "cli"
8
8
  ],
9
+ "license": "MIT",
10
+ "author": "uikoo9 <uikoo9@qq.com>",
11
+ "homepage": "https://github.com/uikoo9/shun-js",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/uikoo9/shun-js.git"
15
+ },
16
+ "bugs": {
17
+ "url": "https://github.com/uikoo9/shun-js/issues"
18
+ },
9
19
  "bin": {
10
20
  "shunjs": "./bin/shun.js"
11
21
  },
22
+ "files": [
23
+ "bin"
24
+ ],
12
25
  "dependencies": {
13
26
  "debug": "^4.4.3",
14
27
  "pm2": "^6.0.13",
@@ -19,5 +32,5 @@
19
32
  "access": "public",
20
33
  "registry": "https://registry.npmjs.org/"
21
34
  },
22
- "gitHead": "0ac873e0a5fa8aa4d15c33dad0071be74d6fa2d9"
35
+ "gitHead": "1c0d36e59e4511d72ca8b4626442aaa805ad93c1"
23
36
  }