rulesync 3.14.0 → 3.16.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/README.md +74 -7
- package/dist/index.cjs +123 -131
- package/dist/index.js +304 -312
- package/package.json +15 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rulesync",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.16.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",
|
|
@@ -36,8 +36,7 @@
|
|
|
36
36
|
"pre-commit": "pnpm exec lint-staged"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@kimuson/modular-mcp": "0.0.
|
|
40
|
-
"c12": "3.3.1",
|
|
39
|
+
"@kimuson/modular-mcp": "0.0.5",
|
|
41
40
|
"chokidar": "4.0.3",
|
|
42
41
|
"commander": "14.0.2",
|
|
43
42
|
"consola": "3.4.2",
|
|
@@ -45,32 +44,33 @@
|
|
|
45
44
|
"fast-xml-parser": "5.3.1",
|
|
46
45
|
"gray-matter": "4.0.3",
|
|
47
46
|
"js-yaml": "4.1.0",
|
|
47
|
+
"jsonc-parser": "3.3.1",
|
|
48
48
|
"micromatch": "4.0.8",
|
|
49
49
|
"smol-toml": "1.4.2",
|
|
50
50
|
"zod": "4.1.12"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@anthropic-ai/claude-agent-sdk": "0.1.30",
|
|
54
|
-
"@biomejs/biome": "2.3.
|
|
54
|
+
"@biomejs/biome": "2.3.4",
|
|
55
55
|
"@eslint/js": "9.39.1",
|
|
56
56
|
"@secretlint/secretlint-rule-preset-recommend": "11.2.5",
|
|
57
57
|
"@tsconfig/node24": "24.0.1",
|
|
58
58
|
"@types/js-yaml": "4.0.9",
|
|
59
59
|
"@types/micromatch": "4.0.10",
|
|
60
60
|
"@types/node": "24.10.0",
|
|
61
|
-
"@typescript/native-preview": "7.0.0-dev.
|
|
62
|
-
"@vitest/coverage-v8": "4.0.
|
|
63
|
-
"cspell": "9.
|
|
61
|
+
"@typescript/native-preview": "7.0.0-dev.20251108.1",
|
|
62
|
+
"@vitest/coverage-v8": "4.0.8",
|
|
63
|
+
"cspell": "9.3.0",
|
|
64
64
|
"eslint": "9.39.1",
|
|
65
65
|
"eslint-plugin-import": "2.32.0",
|
|
66
66
|
"eslint-plugin-no-type-assertion": "1.3.0",
|
|
67
|
-
"eslint-plugin-oxlint": "1.
|
|
67
|
+
"eslint-plugin-oxlint": "1.26.0",
|
|
68
68
|
"eslint-plugin-strict-dependencies": "1.3.27",
|
|
69
69
|
"eslint-plugin-zod-import": "0.3.0",
|
|
70
|
-
"knip": "5.
|
|
70
|
+
"knip": "5.68.0",
|
|
71
71
|
"lint-staged": "16.2.6",
|
|
72
72
|
"o3-search-mcp": "0.0.9",
|
|
73
|
-
"oxlint": "1.
|
|
73
|
+
"oxlint": "1.26.0",
|
|
74
74
|
"p-queue": "9.0.0",
|
|
75
75
|
"secretlint": "11.2.5",
|
|
76
76
|
"simple-git-hooks": "2.13.1",
|
|
@@ -79,10 +79,10 @@
|
|
|
79
79
|
"tsx": "4.20.6",
|
|
80
80
|
"typescript": "5.9.3",
|
|
81
81
|
"typescript-eslint": "8.46.3",
|
|
82
|
-
"vitest": "4.0.
|
|
82
|
+
"vitest": "4.0.8"
|
|
83
83
|
},
|
|
84
84
|
"engines": {
|
|
85
|
-
"node": ">=
|
|
85
|
+
"node": ">=22.0.0"
|
|
86
86
|
},
|
|
87
87
|
"publishConfig": {
|
|
88
88
|
"access": "public"
|
|
@@ -92,7 +92,9 @@
|
|
|
92
92
|
"bcheck:fix": "biome check --write .",
|
|
93
93
|
"build": "tsup src/cli/index.ts --format cjs,esm --dts --clean",
|
|
94
94
|
"check": "pnpm run bcheck && pnpm run oxlint && pnpm run eslint && pnpm run typecheck",
|
|
95
|
-
"cicheck": "pnpm run
|
|
95
|
+
"cicheck": "pnpm run cicheck:code && pnpm run cicheck:content",
|
|
96
|
+
"cicheck:code": "pnpm run check && pnpm run test",
|
|
97
|
+
"cicheck:content": "pnpm run cspell && pnpm run secretlint",
|
|
96
98
|
"cspell": "cspell --no-progress --gitignore .",
|
|
97
99
|
"dev": "tsx src/cli/index.ts",
|
|
98
100
|
"eslint": "eslint . --max-warnings 0 --cache",
|