forked from UfoMiao/zcf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.05 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "zcf",
"type": "module",
"version": "3.4.1",
"packageManager": "pnpm@10.17.1",
"description": "Zero-Config Code Flow - One-click configuration tool for Code Cli",
"author": {
"name": "Miao Da",
"email": "ufo025174@gmail.com",
"url": "https://github.com/WitMiao"
},
"license": "MIT",
"homepage": "https://github.com/UfoMiao/zcf",
"repository": {
"type": "git",
"url": "git+https://github.com/UfoMiao/zcf.git"
},
"bugs": "https://github.com/UfoMiao/zcf/issues",
"keywords": [
"claude",
"claude-code",
"codex",
"config",
"cli",
"setup",
"zero-config",
"zcf",
"anthropic",
"openai",
"ChatGPT",
"ai",
"automation",
"mcp"
],
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.mts",
"bin": {
"zcf": "bin/zcf.mjs"
},
"files": [
"bin",
"dist",
"templates"
],
"scripts": {
"dev": "tsx ./src/cli.ts",
"build": "unbuild",
"start": "node bin/zcf.mjs",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm build",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:run": "vitest run",
"test:watch": "vitest watch",
"changeset": "changeset",
"version": "changeset version",
"update:deps": "pnpx taze major -r -w",
"release": "pnpm build && changeset publish",
"prepare": "husky",
"commitlint": "commitlint",
"commitlint:check": "commitlint --from HEAD~1 --to HEAD --verbose",
"docs:dev": "pnpm -F @zcf/docs dev",
"docs:build": "pnpm -F @zcf/docs build",
"docs:preview": "pnpm -F @zcf/docs preview"
},
"dependencies": {
"@types/semver": "catalog:types",
"ansis": "catalog:cli",
"cac": "catalog:cli",
"dayjs": "catalog:runtime",
"find-up-simple": "catalog:runtime",
"fs-extra": "catalog:runtime",
"i18next": "catalog:runtime",
"i18next-fs-backend": "catalog:runtime",
"inquirer": "catalog:cli",
"inquirer-toggle": "catalog:cli",
"ora": "catalog:cli",
"pathe": "catalog:runtime",
"semver": "catalog:runtime",
"smol-toml": "catalog:runtime",
"tinyexec": "catalog:runtime",
"trash": "catalog:runtime"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:build",
"@changesets/cli": "catalog:tooling",
"@commitlint/cli": "catalog:tooling",
"@commitlint/config-conventional": "catalog:tooling",
"@commitlint/types": "catalog:tooling",
"@types/fs-extra": "catalog:types",
"@types/inquirer": "catalog:types",
"@types/node": "catalog:types",
"@vitest/coverage-v8": "catalog:testing",
"@vitest/ui": "catalog:testing",
"eslint": "catalog:build",
"eslint-plugin-format": "catalog:build",
"glob": "catalog:testing",
"husky": "catalog:tooling",
"lint-staged": "catalog:tooling",
"tsx": "catalog:build",
"typescript": "catalog:build",
"unbuild": "catalog:build",
"vitest": "catalog:testing"
},
"lint-staged": {
"*": [
"pnpm lint"
]
}
}