rulesync 7.2.0 → 7.4.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 +34 -938
- package/dist/chunk-UCC3WPDL.js +15200 -0
- package/dist/cli/index.cjs +19041 -0
- package/dist/cli/index.d.cts +1 -0
- package/dist/cli/index.d.ts +1 -0
- package/dist/cli/index.js +3944 -0
- package/dist/index.cjs +2180 -5701
- package/dist/index.d.cts +274 -1
- package/dist/index.d.ts +274 -1
- package/dist/index.js +35 -18690
- package/package.json +21 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rulesync",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.4.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",
|
|
@@ -23,11 +23,23 @@
|
|
|
23
23
|
"license": "MIT",
|
|
24
24
|
"author": "dyoshikawa",
|
|
25
25
|
"type": "module",
|
|
26
|
-
"
|
|
27
|
-
|
|
26
|
+
"exports": {
|
|
27
|
+
".": {
|
|
28
|
+
"import": {
|
|
29
|
+
"types": "./dist/index.d.ts",
|
|
30
|
+
"default": "./dist/index.js"
|
|
31
|
+
},
|
|
32
|
+
"require": {
|
|
33
|
+
"types": "./dist/index.d.cts",
|
|
34
|
+
"default": "./dist/index.cjs"
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"main": "dist/index.cjs",
|
|
39
|
+
"module": "dist/index.js",
|
|
28
40
|
"types": "dist/index.d.ts",
|
|
29
41
|
"bin": {
|
|
30
|
-
"rulesync": "dist/index.js"
|
|
42
|
+
"rulesync": "dist/cli/index.js"
|
|
31
43
|
},
|
|
32
44
|
"files": [
|
|
33
45
|
"dist"
|
|
@@ -73,7 +85,6 @@
|
|
|
73
85
|
"eslint-plugin-zod-import": "0.3.0",
|
|
74
86
|
"knip": "5.83.1",
|
|
75
87
|
"lint-staged": "16.2.7",
|
|
76
|
-
"marked": "17.0.2",
|
|
77
88
|
"oxfmt": "0.31.0",
|
|
78
89
|
"oxlint": "1.46.0",
|
|
79
90
|
"repomix": "1.11.1",
|
|
@@ -85,6 +96,7 @@
|
|
|
85
96
|
"tsx": "4.21.0",
|
|
86
97
|
"typescript": "5.9.3",
|
|
87
98
|
"typescript-eslint": "8.55.0",
|
|
99
|
+
"vitepress": "1.6.4",
|
|
88
100
|
"vitest": "4.0.18"
|
|
89
101
|
},
|
|
90
102
|
"engines": {
|
|
@@ -94,13 +106,16 @@
|
|
|
94
106
|
"access": "public"
|
|
95
107
|
},
|
|
96
108
|
"scripts": {
|
|
97
|
-
"build": "tsup src/cli/index.ts --format cjs,esm --dts --clean",
|
|
109
|
+
"build": "tsup src/cli/index.ts src/index.ts --format cjs,esm --dts --clean",
|
|
98
110
|
"check": "pnpm run fmt:check && pnpm run oxlint && pnpm run eslint && pnpm run typecheck",
|
|
99
111
|
"cicheck": "pnpm run cicheck:code && pnpm run cicheck:content",
|
|
100
112
|
"cicheck:code": "pnpm run check && pnpm run test",
|
|
101
113
|
"cicheck:content": "pnpm run cspell && pnpm run secretlint",
|
|
102
114
|
"cspell": "cspell --no-progress --gitignore .",
|
|
103
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",
|
|
104
119
|
"eslint": "eslint . --max-warnings 0 --cache",
|
|
105
120
|
"eslint:fix": "eslint . --fix --max-warnings 0 --cache",
|
|
106
121
|
"fix": "pnpm run fmt && pnpm run oxlint:fix && pnpm run eslint:fix",
|