zcf 1.0.0 → 1.0.1
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/dist/cli.mjs +1 -1
- package/package.json +20 -18
package/dist/cli.mjs
CHANGED
|
@@ -9,7 +9,7 @@ import 'pathe';
|
|
|
9
9
|
import 'dayjs';
|
|
10
10
|
import 'tinyexec';
|
|
11
11
|
|
|
12
|
-
const version = "1.0.
|
|
12
|
+
const version = "1.0.1";
|
|
13
13
|
|
|
14
14
|
const cli = cac("zcf");
|
|
15
15
|
cli.command("[lang]", "Initialize Claude Code configuration").option("--config-lang <lang>", "Configuration language (zh-CN, en)").option("--force", "Force overwrite existing configuration").option("--skip-install", "Skip Claude Code installation check").action(async (lang, options) => {
|
package/package.json
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zcf",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
5
|
-
"packageManager": "pnpm@9.0.0",
|
|
4
|
+
"version": "1.0.1",
|
|
6
5
|
"description": "Zero-Config Claude-Code Flow - One-click configuration tool for Claude Code",
|
|
7
6
|
"license": "MIT",
|
|
8
|
-
"homepage": "https://github.com/UfoMiao/
|
|
7
|
+
"homepage": "https://github.com/UfoMiao/zcf#readme",
|
|
9
8
|
"repository": {
|
|
10
9
|
"type": "git",
|
|
11
|
-
"url": "git+https://github.com/UfoMiao/
|
|
10
|
+
"url": "git+https://github.com/UfoMiao/zcf.git"
|
|
12
11
|
},
|
|
13
12
|
"main": "dist/index.mjs",
|
|
14
13
|
"module": "dist/index.mjs",
|
|
@@ -21,27 +20,21 @@
|
|
|
21
20
|
"bin",
|
|
22
21
|
"templates"
|
|
23
22
|
],
|
|
24
|
-
"scripts": {
|
|
25
|
-
"dev": "tsx ./src/cli.ts",
|
|
26
|
-
"build": "unbuild",
|
|
27
|
-
"typecheck": "tsc",
|
|
28
|
-
"prepublishOnly": "npm run build",
|
|
29
|
-
"test": "npm run build && node bin/zcf.mjs"
|
|
30
|
-
},
|
|
31
23
|
"dependencies": {
|
|
32
24
|
"@posva/prompts": "^2.4.4",
|
|
33
|
-
"ansis": "^3.
|
|
25
|
+
"ansis": "^3.17.0",
|
|
34
26
|
"cac": "^6.7.14",
|
|
35
27
|
"dayjs": "^1.11.13",
|
|
36
28
|
"find-up-simple": "^1.0.1",
|
|
37
|
-
"pathe": "^2.0.
|
|
29
|
+
"pathe": "^2.0.3",
|
|
38
30
|
"tinyexec": "^1.0.1"
|
|
39
31
|
},
|
|
40
32
|
"devDependencies": {
|
|
41
|
-
"@
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
33
|
+
"@changesets/cli": "^2.29.5",
|
|
34
|
+
"@types/node": "^22.17.0",
|
|
35
|
+
"tsx": "^4.20.3",
|
|
36
|
+
"typescript": "^5.9.2",
|
|
37
|
+
"unbuild": "^3.6.0"
|
|
45
38
|
},
|
|
46
39
|
"keywords": [
|
|
47
40
|
"claude",
|
|
@@ -55,5 +48,14 @@
|
|
|
55
48
|
"ai",
|
|
56
49
|
"automation",
|
|
57
50
|
"mcp"
|
|
58
|
-
]
|
|
51
|
+
],
|
|
52
|
+
"scripts": {
|
|
53
|
+
"dev": "tsx ./src/cli.ts",
|
|
54
|
+
"build": "unbuild",
|
|
55
|
+
"typecheck": "tsc",
|
|
56
|
+
"test": "npm run build && node bin/zcf.mjs",
|
|
57
|
+
"changeset": "changeset",
|
|
58
|
+
"version": "changeset version",
|
|
59
|
+
"release": "pnpm build && changeset publish"
|
|
60
|
+
}
|
|
59
61
|
}
|