zcf
Version:
Zero-Config Code Flow - One-click configuration tool for Code Cli
111 lines • 2.77 kB
JSON
{
"name": "zcf",
"type": "module",
"version": "3.5.0",
"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"
],
"dependencies": {
"@types/semver": "^7.7.1",
"ansis": "^4.1.0",
"cac": "^6.7.14",
"dayjs": "^1.11.18",
"find-up-simple": "^1.0.1",
"fs-extra": "^11.3.2",
"i18next": "^25.5.2",
"i18next-fs-backend": "^2.6.0",
"inquirer": "^12.9.6",
"inquirer-toggle": "^1.0.1",
"ora": "^9.0.0",
"pathe": "^2.0.3",
"semver": "^7.7.2",
"smol-toml": "^1.4.2",
"tinyexec": "^1.0.1",
"trash": "^10.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^5.4.1",
"@changesets/cli": "^2.29.7",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@commitlint/types": "^19.8.1",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.9",
"@types/node": "^22.18.6",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"eslint": "^9.36.0",
"eslint-plugin-format": "^1.0.2",
"glob": "^11.0.3",
"husky": "^9.1.7",
"lint-staged": "^16.2.0",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"unbuild": "^3.6.1",
"vitest": "^3.2.4"
},
"lint-staged": {
"*": [
"pnpm lint"
]
},
"scripts": {
"dev": "tsx ./src/cli.ts",
"build": "unbuild",
"start": "node bin/zcf.mjs",
"typecheck": "tsc --noEmit",
"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",
"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"
}
}