zcf
Version:
Zero-Config Claude-Code Flow - One-click configuration tool for Claude Code
77 lines • 1.78 kB
JSON
{
"name": "zcf",
"type": "module",
"version": "2.11.0",
"description": "Zero-Config Claude-Code Flow - One-click configuration tool for Claude Code",
"license": "MIT",
"homepage": "https://github.com/UfoMiao/zcf",
"repository": {
"type": "git",
"url": "git+https://github.com/UfoMiao/zcf.git"
},
"keywords": [
"claude",
"claude-code",
"config",
"cli",
"setup",
"zero-config",
"zcf",
"anthropic",
"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.0",
"ansis": "^3.17.0",
"cac": "^6.7.14",
"dayjs": "^1.11.13",
"find-up-simple": "^1.0.1",
"inquirer": "^12.9.0",
"ora": "^8.2.0",
"pathe": "^2.0.3",
"semver": "^7.7.2",
"tinyexec": "^1.0.1"
},
"devDependencies": {
"@antfu/eslint-config": "^5.2.1",
"@changesets/cli": "^2.29.5",
"@types/inquirer": "^9.0.8",
"@types/node": "^22.17.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"eslint": "^9.33.0",
"eslint-plugin-format": "^1.0.1",
"tsx": "^4.20.3",
"typescript": "^5.9.2",
"unbuild": "^3.6.0",
"vitest": "^3.2.4"
},
"scripts": {
"dev": "tsx ./src/cli.ts",
"build": "unbuild",
"typecheck": "tsc",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:run": "vitest run",
"test:watch": "vitest watch",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm build && changeset publish"
}
}