archgate 0.53.0 → 0.55.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 (1) hide show
  1. package/package.json +19 -14
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "archgate",
3
- "version": "0.53.0",
3
+ "version": "0.55.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,22 +67,22 @@
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.70.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.0",
75
+ "conventional-changelog": "8.1.3",
76
+ "conventional-changelog-angular": "9.3.0",
77
+ "czg": "1.13.2",
73
78
  "fast-check": "4.9.0",
74
79
  "inquirer": "14.0.2",
75
- "knip": "6.29.0",
76
- "meriyah": "7.1.2",
77
- "oxfmt": "0.60.0",
78
- "oxlint": "1.75.0",
80
+ "knip": "6.32.2",
81
+ "meriyah": "7.3.2",
82
+ "oxfmt": "0.64.0",
83
+ "oxlint": "1.79.0",
79
84
  "oxlint-tsgolint": "7.0.2001",
80
- "posthog-node": "5.46.0",
85
+ "posthog-node": "5.49.1",
81
86
  "typescript": "7.0.2",
82
87
  "zod": "4.4.3"
83
88
  },