rulesync 7.2.0 → 7.3.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 +50 -25
- package/dist/chunk-NRNUPCXY.js +15081 -0
- package/dist/cli/index.cjs +18933 -0
- package/dist/cli/index.d.cts +1 -0
- package/dist/cli/index.d.ts +1 -0
- package/dist/cli/index.js +3955 -0
- package/dist/index.cjs +2009 -5649
- package/dist/index.d.cts +274 -1
- package/dist/index.d.ts +274 -1
- package/dist/index.js +35 -18690
- package/package.json +17 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rulesync",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.3.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"
|
|
@@ -94,7 +106,7 @@
|
|
|
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",
|