@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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@jazpiper/rules-doctor",
3
- "version": "0.1.0",
4
- "description": "Node.js CLI to keep agent rules in sync across CLAUDE.md and AGENTS.md",
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"