@jazpiper/rules-doctor 0.1.0 → 0.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/CHANGELOG.md +18 -0
- package/README.md +141 -39
- package/dist/adapters/claude.js +31 -0
- package/dist/adapters/codex.js +14 -0
- package/dist/adapters/common.js +54 -0
- package/dist/adapters/copilot.js +15 -0
- package/dist/adapters/cursor.js +19 -0
- package/dist/adapters/gemini.js +12 -0
- package/dist/adapters/index.js +14 -0
- package/dist/adapters/opencode.js +14 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1146 -242
- package/package.json +13 -5
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jazpiper/rules-doctor",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Node.js CLI to
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"description": "Node.js CLI to sync shared coding rules across multiple agent/CLI targets",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"bin": {
|
|
7
7
|
"rules-doctor": "dist/index.js"
|
|
@@ -11,18 +11,26 @@
|
|
|
11
11
|
"files": [
|
|
12
12
|
"dist",
|
|
13
13
|
"README.md",
|
|
14
|
+
"CHANGELOG.md",
|
|
14
15
|
"LICENSE"
|
|
15
16
|
],
|
|
16
17
|
"scripts": {
|
|
17
|
-
"build": "node scripts/tsup.js src/index.js --clean",
|
|
18
|
-
"test": "npm run build && node --test"
|
|
18
|
+
"build": "node scripts/tsup.js src/index.js --clean --dts",
|
|
19
|
+
"test": "npm run build && node --test",
|
|
20
|
+
"release:patch": "bash scripts/release.sh patch",
|
|
21
|
+
"release:minor": "bash scripts/release.sh minor",
|
|
22
|
+
"release:major": "bash scripts/release.sh major"
|
|
19
23
|
},
|
|
20
24
|
"keywords": [
|
|
21
25
|
"cli",
|
|
22
26
|
"agents",
|
|
23
27
|
"rules",
|
|
24
28
|
"claude",
|
|
25
|
-
"codex"
|
|
29
|
+
"codex",
|
|
30
|
+
"copilot",
|
|
31
|
+
"cursor",
|
|
32
|
+
"gemini",
|
|
33
|
+
"opencode"
|
|
26
34
|
],
|
|
27
35
|
"engines": {
|
|
28
36
|
"node": ">=18"
|