rulesync 4.0.0 → 4.1.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.
Files changed (4) hide show
  1. package/README.md +4 -11
  2. package/dist/index.cjs +1819 -524
  3. package/dist/index.js +1804 -509
  4. package/package.json +8 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rulesync",
3
- "version": "4.0.0",
3
+ "version": "4.1.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,17 +36,20 @@
36
36
  "pre-commit": "pnpm exec lint-staged"
37
37
  },
38
38
  "dependencies": {
39
- "@modelcontextprotocol/sdk": "1.22.0",
39
+ "@modelcontextprotocol/sdk": "1.25.1",
40
40
  "@toon-format/toon": "2.1.0",
41
+ "@valibot/to-json-schema": "1.5.0",
41
42
  "commander": "14.0.2",
42
43
  "consola": "3.4.2",
43
- "es-toolkit": "1.42.0",
44
- "fastmcp": "3.23.1",
44
+ "effect": "3.19.13",
45
+ "es-toolkit": "1.43.0",
46
+ "fastmcp": "3.25.4",
45
47
  "gray-matter": "4.0.3",
46
48
  "js-yaml": "4.1.1",
47
49
  "jsonc-parser": "3.3.1",
48
50
  "smol-toml": "1.5.2",
49
- "zod": "4.1.13"
51
+ "sury": "11.0.0-alpha.4",
52
+ "zod": "4.2.1"
50
53
  },
51
54
  "devDependencies": {
52
55
  "@anthropic-ai/claude-agent-sdk": "0.1.75",
@@ -87,7 +90,6 @@
87
90
  "bcheck": "biome check .",
88
91
  "bcheck:fix": "biome check --write .",
89
92
  "build": "tsup src/cli/index.ts --format cjs,esm --dts --clean",
90
- "bundle:deno": "tsup --config tsup.deno.config.ts",
91
93
  "check": "pnpm run bcheck && pnpm run oxlint && pnpm run eslint && pnpm run typecheck",
92
94
  "cicheck": "pnpm run cicheck:code && pnpm run cicheck:content",
93
95
  "cicheck:code": "pnpm run check && pnpm run test",