@fastgpt-plugin/cli 0.1.0-beta.6 → 0.1.0-beta.7

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/index.js +1 -1
  2. package/package.json +9 -10
package/dist/index.js CHANGED
@@ -539,7 +539,7 @@ var CheckCommand = class extends BaseCommand {
539
539
  //#endregion
540
540
  //#region package.json
541
541
  var name = "@fastgpt-plugin/cli";
542
- var version = "0.1.0-beta.6";
542
+ var version = "0.1.0-beta.7";
543
543
 
544
544
  //#endregion
545
545
  //#region src/constants.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fastgpt-plugin/cli",
3
- "version": "0.1.0-beta.6",
3
+ "version": "0.1.0-beta.7",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "publishConfig": {
@@ -16,13 +16,6 @@
16
16
  "templates",
17
17
  "skills"
18
18
  ],
19
- "scripts": {
20
- "build": "tsdown",
21
- "build:verbose": "tsdown",
22
- "test": "vitest run",
23
- "dev": "tsx src/index.ts",
24
- "prepublishOnly": "pnpm run build"
25
- },
26
19
  "dependencies": {
27
20
  "@oxc-parser/binding-wasm32-wasi": "^0.112.0",
28
21
  "@inquirer/prompts": "^8.2.0",
@@ -30,7 +23,7 @@
30
23
  "consola": "^3.4.2",
31
24
  "es-toolkit": "^1.44.0",
32
25
  "oxc-parser": "^0.112.0",
33
- "tsdown": "catalog:",
26
+ "tsdown": "^0.21.10",
34
27
  "yazl": "^3.3.1",
35
28
  "yaml": "^2.6.1",
36
29
  "zod": "^4"
@@ -43,5 +36,11 @@
43
36
  },
44
37
  "engines": {
45
38
  "node": ">=22.12.0"
39
+ },
40
+ "scripts": {
41
+ "build": "tsdown",
42
+ "build:verbose": "tsdown",
43
+ "test": "vitest run",
44
+ "dev": "tsx src/index.ts"
46
45
  }
47
- }
46
+ }