rulesync 7.3.0 → 7.5.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 +12 -941
- package/dist/{chunk-NRNUPCXY.js → chunk-WZ7IUX6M.js} +367 -137
- package/dist/cli/index.cjs +328 -109
- package/dist/cli/index.js +6 -17
- package/dist/index.cjs +323 -93
- package/dist/index.js +1 -1
- package/package.json +5 -2
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rulesync",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.5.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",
|
|
@@ -85,7 +85,6 @@
|
|
|
85
85
|
"eslint-plugin-zod-import": "0.3.0",
|
|
86
86
|
"knip": "5.83.1",
|
|
87
87
|
"lint-staged": "16.2.7",
|
|
88
|
-
"marked": "17.0.2",
|
|
89
88
|
"oxfmt": "0.31.0",
|
|
90
89
|
"oxlint": "1.46.0",
|
|
91
90
|
"repomix": "1.11.1",
|
|
@@ -97,6 +96,7 @@
|
|
|
97
96
|
"tsx": "4.21.0",
|
|
98
97
|
"typescript": "5.9.3",
|
|
99
98
|
"typescript-eslint": "8.55.0",
|
|
99
|
+
"vitepress": "1.6.4",
|
|
100
100
|
"vitest": "4.0.18"
|
|
101
101
|
},
|
|
102
102
|
"engines": {
|
|
@@ -113,6 +113,9 @@
|
|
|
113
113
|
"cicheck:content": "pnpm run cspell && pnpm run secretlint",
|
|
114
114
|
"cspell": "cspell --no-progress --gitignore .",
|
|
115
115
|
"dev": "tsx src/cli/index.ts",
|
|
116
|
+
"docs:build": "vitepress build docs",
|
|
117
|
+
"docs:dev": "vitepress dev docs",
|
|
118
|
+
"docs:preview": "vitepress serve docs",
|
|
116
119
|
"eslint": "eslint . --max-warnings 0 --cache",
|
|
117
120
|
"eslint:fix": "eslint . --fix --max-warnings 0 --cache",
|
|
118
121
|
"fix": "pnpm run fmt && pnpm run oxlint:fix && pnpm run eslint:fix",
|