UNPKG

rulesync

Version:

Unified AI rules management CLI tool that generates configuration files for various AI development tools

101 lines 2.93 kB
{ "name": "rulesync", "version": "0.55.0", "description": "Unified AI rules management CLI tool that generates configuration files for various AI development tools", "keywords": [ "ai", "rules", "cli", "copilot", "cursor", "cline", "configuration", "development" ], "homepage": "https://github.com/dyoshikawa/rulesync#readme", "bugs": { "url": "https://github.com/dyoshikawa/rulesync/issues" }, "repository": { "type": "git", "url": "https://github.com/dyoshikawa/rulesync.git" }, "license": "MIT", "author": "dyoshikawa", "type": "module", "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "bin": { "rulesync": "dist/index.js" }, "files": [ "dist" ], "simple-git-hooks": { "pre-commit": "pnpm exec lint-staged" }, "dependencies": { "c12": "3.1.0", "chokidar": "4.0.3", "commander": "14.0.0", "gray-matter": "4.0.3", "js-yaml": "4.1.0", "marked": "16.1.1", "micromatch": "4.0.8", "zod": "4.0.8" }, "devDependencies": { "@biomejs/biome": "2.1.2", "@eslint/js": "9.31.0", "@secretlint/secretlint-rule-preset-recommend": "10.2.1", "@tsconfig/node24": "24.0.1", "@types/js-yaml": "4.0.9", "@types/micromatch": "4.0.9", "@types/node": "24.1.0", "@typescript/native-preview": "7.0.0-dev.20250724.1", "@vitest/coverage-v8": "3.2.4", "cspell": "9.2.0", "eslint": "^9.31.0", "eslint-plugin-no-type-assertion": "1.3.0", "eslint-plugin-oxlint": "1.8.0", "eslint-plugin-zod-import": "0.3.0", "lint-staged": "16.1.2", "o3-search-mcp": "0.0.6", "oxlint": "1.8.0", "secretlint": "10.2.1", "simple-git-hooks": "2.13.0", "sort-package-json": "3.4.0", "tsup": "8.5.0", "tsx": "4.20.3", "typescript": "5.8.3", "typescript-eslint": "^8.38.0", "vitest": "3.2.4" }, "engines": { "node": ">=20.0.0" }, "publishConfig": { "access": "public" }, "scripts": { "bcheck": "biome check src/", "bcheck:fix": "biome check --write src/", "build": "tsup src/cli/index.ts --format cjs,esm --dts --clean", "check": "pnpm run bcheck && pnpm run oxlint && pnpm run eslint && pnpm run typecheck", "cspell": "cspell \"**/*\"", "dev": "tsx src/cli/index.ts", "eslint": "eslint . --max-warnings 0 --cache", "eslint:fix": "eslint . --fix --max-warnings 0 --cache", "fix": "pnpm run bcheck:fix && pnpm run oxlint:fix && pnpm run eslint:fix", "generate": "pnpm run dev generate", "oxlint": "oxlint . --max-warnings 0", "oxlint:fix": "oxlint . --fix --max-warnings 0", "secretlint": "secretlint --secretlintignore .gitignore \"**/*\"", "sort": "sort-package-json", "test": "vitest run --silent", "test:coverage": "vitest run --coverage --silent", "test:watch": "vitest --silent", "typecheck": "tsgo --noEmit" } }