rulesync 16.5.0 → 16.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli/index.cjs +172 -23
- package/dist/cli/index.js +171 -23
- package/dist/cli/index.js.map +1 -1
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rulesync",
|
|
3
|
-
"version": "16.
|
|
3
|
+
"version": "16.6.0",
|
|
4
4
|
"description": "Unified AI rules management CLI tool that generates configuration files for various AI development tools",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -48,6 +48,7 @@
|
|
|
48
48
|
"pre-commit": "pnpm exec lint-staged"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
+
"@inquirer/checkbox": "5.2.1",
|
|
51
52
|
"@modelcontextprotocol/sdk": "1.30.0",
|
|
52
53
|
"@octokit/request-error": "7.1.0",
|
|
53
54
|
"@octokit/rest": "22.0.1",
|
|
@@ -102,7 +103,7 @@
|
|
|
102
103
|
"scripts": {
|
|
103
104
|
"build": "tsdown",
|
|
104
105
|
"check": "pnpm run fmt:check && pnpm run oxlint && pnpm run typecheck",
|
|
105
|
-
"check:docs-content": "pnpm run generate:docs-content && git diff --exit-code src/generated/docs-content.ts",
|
|
106
|
+
"check:docs-content": "pnpm run generate:docs-content && git diff --exit-code src/generated/docs-content.ts docs/reference/file-formats.md",
|
|
106
107
|
"check:gitignore": "pnpm run dev gitignore && git diff --exit-code .gitignore .gitattributes",
|
|
107
108
|
"check:supported-tools": "tsx scripts/generate-supported-tools-tables.ts && git diff --exit-code README.md docs/reference/supported-tools.md",
|
|
108
109
|
"check:sync-skill-docs": "tsx scripts/check-skill-docs-sync.ts",
|