@king-3/file-kit 1.2.0 → 1.3.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/dist/cli.js +1 -1
  2. package/package.json +3 -3
package/dist/cli.js CHANGED
@@ -225,7 +225,7 @@ async function base64ToFile(archiveData, outputDir = ".") {
225
225
  //#endregion
226
226
  //#region src/config/defaults.ts
227
227
  const CLI_NAME = "File Kit";
228
- const CLI_VERSION = "1.1.0";
228
+ const CLI_VERSION = "1.3.0";
229
229
  const CLI_ALIAS = "fkt";
230
230
  /**
231
231
  * 默认配置
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@king-3/file-kit",
3
- "version": "1.2.0",
3
+ "version": "1.3.0",
4
4
  "description": "多功能文件工具箱(Base64 转换 · 视频转音频 · 加密/解密)",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -48,7 +48,7 @@
48
48
  "@king-3/eslint-config": "^4.4.0",
49
49
  "@king-3/prettier-config": "^3.4.0",
50
50
  "@types/node": "^20.19.26",
51
- "bumpp": "^10.3.2",
51
+ "bumpp": "^10.4.1",
52
52
  "eslint": "^9.39.1",
53
53
  "prettier": "^3.7.4",
54
54
  "tsdown": "^0.18.0",
@@ -66,6 +66,6 @@
66
66
  "lint": "eslint",
67
67
  "lint:fix": "eslint --fix",
68
68
  "typecheck": "tsc --noEmit",
69
- "release": "bumpp"
69
+ "release": "tsx scripts/release.ts"
70
70
  }
71
71
  }