rulesync 4.0.0 → 4.0.1
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 +0 -9
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +8 -6
package/README.md
CHANGED
|
@@ -57,15 +57,6 @@ chmod +x rulesync
|
|
|
57
57
|
sudo mv rulesync /usr/local/bin/
|
|
58
58
|
```
|
|
59
59
|
|
|
60
|
-
#### macOS (Intel)
|
|
61
|
-
|
|
62
|
-
```bash
|
|
63
|
-
curl -L https://github.com/dyoshikawa/rulesync/releases/latest/download/rulesync-darwin-x64 -o rulesync
|
|
64
|
-
chmod +x rulesync
|
|
65
|
-
# Place the binary wherever set PATH
|
|
66
|
-
sudo mv rulesync /usr/local/bin/
|
|
67
|
-
```
|
|
68
|
-
|
|
69
60
|
#### macOS (Apple Silicon)
|
|
70
61
|
|
|
71
62
|
```bash
|
package/dist/index.cjs
CHANGED
|
@@ -10601,7 +10601,7 @@ async function mcpCommand({ version }) {
|
|
|
10601
10601
|
}
|
|
10602
10602
|
|
|
10603
10603
|
// src/cli/index.ts
|
|
10604
|
-
var getVersion = () => "4.0.
|
|
10604
|
+
var getVersion = () => "4.0.1";
|
|
10605
10605
|
var main = async () => {
|
|
10606
10606
|
const program = new import_commander.Command();
|
|
10607
10607
|
const version = getVersion();
|
package/dist/index.js
CHANGED
|
@@ -10578,7 +10578,7 @@ async function mcpCommand({ version }) {
|
|
|
10578
10578
|
}
|
|
10579
10579
|
|
|
10580
10580
|
// src/cli/index.ts
|
|
10581
|
-
var getVersion = () => "4.0.
|
|
10581
|
+
var getVersion = () => "4.0.1";
|
|
10582
10582
|
var main = async () => {
|
|
10583
10583
|
const program = new Command();
|
|
10584
10584
|
const version = getVersion();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rulesync",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.1",
|
|
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.
|
|
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
|
-
"
|
|
44
|
-
"
|
|
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
|
-
"
|
|
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",
|