agentsync
Version:
The missing infrastructure layer for AI coding agent configuration management
110 lines (109 loc) • 2.79 kB
JSON
{
"name": "agentsync",
"version": "0.2.0-alpha.23",
"description": "The missing infrastructure layer for AI coding agent configuration management",
"type": "module",
"bin": {
"agentsync": "dist/cli.js"
},
"files": [
"dist",
"templates",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"dev": "tsx watch src/cli.ts",
"build": "tsc && vite build && node scripts/add-shebang.js",
"postbuild": "node scripts/add-shebang.js",
"test": "vitest run",
"test:watch": "vitest --watch",
"test:coverage": "vitest run --coverage",
"test:e2e": "vitest run tests/e2e",
"test:shell": "vitest run tests/e2e/cli-shell.test.ts",
"test:bats": "bats tests/shell/cli.bats",
"cli": "tsx src/cli.ts",
"lint": "tsc --noEmit && biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"format:check": "biome format .",
"cz": "cz",
"commitlint": "commitlint --from=origin/main --to=HEAD",
"release:version": "npm version --message \"chore(release): %s\"",
"prepare": "husky install",
"security:audit": "pnpm audit",
"prepublishOnly": "pnpm build"
},
"keywords": [
"ai",
"agents",
"agents.md",
"cursor",
"claude",
"claude-code",
"cline",
"windsurf",
"github-copilot",
"config",
"configuration",
"sync",
"synchronization",
"ai-tools",
"developer-tools",
"cli",
"automation"
],
"repository": {
"type": "git",
"url": "git+https://github.com/baranovxyz/agentsync.git"
},
"homepage": "https://github.com/baranovxyz/agentsync#readme",
"bugs": {
"url": "https://github.com/baranovxyz/agentsync/issues"
},
"engines": {
"node": ">=18.0.0"
},
"author": "baranovxyz",
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@inquirer/prompts": "7.9.0",
"chokidar": "4.0.3",
"commander": "14.0.1",
"es-main": "1.3.0",
"execa": "9.6.0",
"fast-glob": "3.3.3",
"js-yaml": "4.1.0",
"micromatch": "4.0.8",
"ora": "9.0.0",
"picocolors": "1.1.1",
"zod": "4.1.12"
},
"devDependencies": {
"@biomejs/biome": "2.2.6",
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@inquirer/testing": "2.1.51",
"@types/js-yaml": "4.0.9",
"@types/micromatch": "4.0.9",
"@types/node": "24.8.0",
"@vitest/coverage-v8": "3.2.4",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"husky": "9.1.6",
"tsx": "4.20.6",
"typescript": "5.9.3",
"vite": "7.1.11",
"vitest": "3.2.4"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}