archgate 0.54.0 → 0.56.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.
Files changed (2) hide show
  1. package/README.md +5 -0
  2. package/package.json +21 -16
package/README.md CHANGED
@@ -8,6 +8,7 @@
8
8
  [![Release](https://github.com/archgate/cli/actions/workflows/release.yml/badge.svg)](https://github.com/archgate/cli/actions/workflows/release.yml)
9
9
  [![Docs](https://img.shields.io/badge/docs-cli.archgate.dev-blue)](https://cli.archgate.dev)
10
10
  [![OpenSSF Best Practices](https://www.bestpractices.dev/projects/12659/badge)](https://www.bestpractices.dev/projects/12659)
11
+ [![Reddit](https://img.shields.io/reddit/subreddit-subscribers/archgatedev?style=flat&label=r%2Farchgatedev&color=FF4500)](https://www.reddit.com/r/archgatedev)
11
12
 
12
13
  </div>
13
14
 
@@ -79,6 +80,10 @@ Each ADR can have a companion `.rules.ts` file that exports automated checks. Se
79
80
 
80
81
  Full documentation is available at **[cli.archgate.dev](https://cli.archgate.dev)**, including guides for writing ADRs, writing rules, CI integration, editor plugin setup, and the complete CLI reference.
81
82
 
83
+ ## Community
84
+
85
+ Questions, ideas, or feedback? Join the discussion at [r/archgatedev](https://www.reddit.com/r/archgatedev).
86
+
82
87
  ## Contributing
83
88
 
84
89
  See [CONTRIBUTING.md](CONTRIBUTING.md) for development setup and workflow.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "archgate",
3
- "version": "0.54.0",
3
+ "version": "0.56.0",
4
4
  "description": "Enforce Architecture Decision Records as executable rules — for both humans and AI agents",
5
5
  "keywords": [
6
6
  "adr",
@@ -36,6 +36,7 @@
36
36
  ],
37
37
  "type": "module",
38
38
  "scripts": {
39
+ "audit": "bun audit",
39
40
  "build:check": "bun build src/cli.ts --compile --bytecode --outfile dist/.build-check && rm -f dist/.build-check dist/.build-check.exe",
40
41
  "build:winget": "bun run shims/winget/build.ts",
41
42
  "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
@@ -52,8 +53,12 @@
52
53
  "hook:session-start": "bun run scripts/session-start.ts",
53
54
  "hook:worktree-create": "bun run scripts/worktree-create.ts",
54
55
  "knip": "knip",
56
+ "licenses": "bun pm licenses",
55
57
  "lint": "bun run scripts/ensure-rules-dts.ts && oxlint --deny-warnings .",
56
- "test": "bun test --timeout 60000",
58
+ "profile:cpu": "bun --cpu-prof-md --cpu-prof-dir=.profiles src/cli.ts",
59
+ "profile:heap": "bun --heap-prof-md --heap-prof-dir=.profiles src/cli.ts",
60
+ "test": "bun test --timeout 60000 --parallel",
61
+ "test:changed": "bun test --timeout 60000 --parallel --changed",
57
62
  "test:coverage": "bun test --timeout 60000 --coverage",
58
63
  "test:watch": "bun test --watch --timeout 60000",
59
64
  "typecheck": "bun run scripts/ensure-rules-dts.ts && tsc --build",
@@ -62,24 +67,24 @@
62
67
  },
63
68
  "devDependencies": {
64
69
  "@commander-js/extra-typings": "15.0.0",
65
- "@commitlint/cli": "21.2.1",
66
- "@commitlint/config-conventional": "21.2.0",
67
- "@sentry/node-core": "10.67.0",
70
+ "@commitlint/cli": "21.2.2",
71
+ "@commitlint/config-conventional": "21.2.2",
72
+ "@sentry/node-core": "10.72.0",
68
73
  "@simple-release/npm": "3.2.5",
69
- "@types/bun": "1.3.14",
70
- "conventional-changelog": "8.1.0",
71
- "conventional-changelog-angular": "9.2.1",
72
- "czg": "1.13.1",
74
+ "@types/bun": "1.4.1",
75
+ "conventional-changelog": "8.1.3",
76
+ "conventional-changelog-angular": "9.4.0",
77
+ "czg": "1.14.0",
73
78
  "fast-check": "4.9.0",
74
- "inquirer": "14.0.2",
75
- "knip": "6.29.0",
76
- "meriyah": "7.1.2",
77
- "oxfmt": "0.60.0",
78
- "oxlint": "1.75.0",
79
+ "inquirer": "14.2.0",
80
+ "knip": "6.33.0",
81
+ "meriyah": "7.3.2",
82
+ "oxfmt": "0.65.0",
83
+ "oxlint": "1.80.0",
79
84
  "oxlint-tsgolint": "7.0.2001",
80
- "posthog-node": "5.46.0",
85
+ "posthog-node": "5.51.4",
81
86
  "typescript": "7.0.2",
82
- "zod": "4.4.3"
87
+ "zod": "4.5.1"
83
88
  },
84
89
  "readme": "README.md"
85
90
  }