easyscreen-shot 1.0.0 → 1.0.2

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.
package/README.md CHANGED
@@ -1,19 +1,19 @@
1
1
  # EasyScreenShot (EasyShot)
2
2
 
3
3
 
4
- ## 核心优势
4
+ ## 核心优势
5
5
 
6
6
  - 支持输入截图尺寸
7
7
  - 支持连续截图
8
8
  - 支持边调整后方内容边截图
9
9
 
10
- ## 安装
10
+ ## 📦 安装方法
11
11
 
12
12
  ```bash
13
- npm install -g .
13
+ npm install -g easyscreen-shot
14
14
  ```
15
15
 
16
- ## 使用方法
16
+ ## 📝 使用方法
17
17
 
18
18
  ### 基础截图
19
19
  ```bash
package/bin/easyshot.js CHANGED
@@ -11,7 +11,7 @@ const { loadConfig, saveConfig } = require('./config');
11
11
  program
12
12
  .name('easyshot')
13
13
  .description('EasyScreenShot CLI Tool')
14
- .version('1.0.0', '-v, --version', 'output the version number')
14
+ .version('1.0.2', '-v, --version', 'output the version number')
15
15
  .option('-w, --watch', 'Watch mode: Consistent capture (Do not exit after capture)', false)
16
16
  .option('-o, --output <dir>', 'Set default output directory for screenshots');
17
17
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "easyscreen-shot",
3
- "version": "1.0.0",
4
- "description": "Cross-platform screenshot tool with Green Box UI",
3
+ "version": "1.0.2",
4
+ "description": "Screenshot tool for customize size and consistent shot",
5
5
  "main": "main.js",
6
6
  "bin": {
7
7
  "easyshot": "bin/easyshot.js"
@@ -30,10 +30,10 @@
30
30
  "url": "https://github.com/JASON-QWeb/EasyScreenShot/issues"
31
31
  },
32
32
  "devDependencies": {
33
- "electron": "^39.2.7",
34
33
  "electron-builder": "^24.0.0"
35
34
  },
36
35
  "dependencies": {
37
- "commander": "^14.0.2"
36
+ "commander": "^14.0.2",
37
+ "electron": "^39.2.7"
38
38
  }
39
- }
39
+ }