archgate 0.50.0 → 0.52.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 +1 -1
- package/package.json +21 -18
package/README.md
CHANGED
|
@@ -66,7 +66,7 @@ Each ADR can have a companion `.rules.ts` file that exports automated checks. Se
|
|
|
66
66
|
|
|
67
67
|
> **Make your AI agent architecture-aware.** With the optional editor plugins, your AI coding agent reads ADRs before writing code, validates changes against your rules, and captures new architectural patterns back into ADRs, automatically.
|
|
68
68
|
>
|
|
69
|
-
> Plugins are available for [**Claude Code**](https://cli.archgate.dev/guides/claude-code-plugin/)
|
|
69
|
+
> Plugins are available for [**Claude Code**](https://cli.archgate.dev/guides/claude-code-plugin/), [**Cursor**](https://cli.archgate.dev/guides/cursor-integration/), [**VS Code**](https://cli.archgate.dev/guides/vscode-plugin/), [**Copilot CLI**](https://cli.archgate.dev/guides/copilot-cli-plugin/), and [**opencode**](https://cli.archgate.dev/guides/opencode-integration/).
|
|
70
70
|
>
|
|
71
71
|
> ```bash
|
|
72
72
|
> archgate login # one-time GitHub auth
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "archgate",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.52.0",
|
|
4
4
|
"description": "Enforce Architecture Decision Records as executable rules — for both humans and AI agents",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"adr",
|
|
@@ -37,6 +37,7 @@
|
|
|
37
37
|
"type": "module",
|
|
38
38
|
"scripts": {
|
|
39
39
|
"build:check": "bun build src/cli.ts --compile --bytecode --outfile dist/.build-check && rm -f dist/.build-check dist/.build-check.exe",
|
|
40
|
+
"build:winget": "bun run shims/winget/build.ts",
|
|
40
41
|
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
|
|
41
42
|
"check": "bun run src/cli.ts check",
|
|
42
43
|
"cli": "bun run src/cli.ts",
|
|
@@ -47,36 +48,38 @@
|
|
|
47
48
|
"format": "oxfmt --write .",
|
|
48
49
|
"format:check": "oxfmt --check .",
|
|
49
50
|
"format:file": "oxfmt --write",
|
|
51
|
+
"hook:format-file": "bun run scripts/format-file-hook.ts",
|
|
52
|
+
"hook:session-start": "bun run scripts/session-start.ts",
|
|
53
|
+
"hook:worktree-create": "bun run scripts/worktree-create.ts",
|
|
50
54
|
"knip": "knip",
|
|
51
|
-
"lint": "oxlint --deny-warnings .",
|
|
55
|
+
"lint": "bun run scripts/ensure-rules-dts.ts && oxlint --deny-warnings .",
|
|
52
56
|
"test": "bun test --timeout 60000",
|
|
53
57
|
"test:coverage": "bun test --timeout 60000 --coverage",
|
|
54
58
|
"test:watch": "bun test --watch --timeout 60000",
|
|
55
|
-
"typecheck": "tsc --build",
|
|
59
|
+
"typecheck": "bun run scripts/ensure-rules-dts.ts && tsc --build",
|
|
56
60
|
"validate": "bun run lint && bun run typecheck && bun run format:check && bun run test && bun run check && bun run knip && bun run build:check",
|
|
57
61
|
"validate:coverage": "bun run lint && bun run typecheck && bun run format:check && bun run test:coverage && bun run check && bun run knip && bun run build:check"
|
|
58
62
|
},
|
|
59
63
|
"devDependencies": {
|
|
60
64
|
"@commander-js/extra-typings": "15.0.0",
|
|
61
|
-
"@commitlint/cli": "21.1
|
|
62
|
-
"@commitlint/config-conventional": "21.
|
|
63
|
-
"@sentry/node-core": "10.
|
|
64
|
-
"@simple-release/npm": "2.
|
|
65
|
+
"@commitlint/cli": "21.2.1",
|
|
66
|
+
"@commitlint/config-conventional": "21.2.0",
|
|
67
|
+
"@sentry/node-core": "10.67.0",
|
|
68
|
+
"@simple-release/npm": "3.2.5",
|
|
65
69
|
"@types/bun": "1.3.14",
|
|
66
|
-
"conventional-changelog": "
|
|
67
|
-
"conventional-changelog-angular": "
|
|
70
|
+
"conventional-changelog": "8.1.0",
|
|
71
|
+
"conventional-changelog-angular": "9.2.1",
|
|
68
72
|
"czg": "1.13.1",
|
|
69
|
-
"fast-check": "4.
|
|
73
|
+
"fast-check": "4.9.0",
|
|
70
74
|
"inquirer": "14.0.2",
|
|
71
|
-
"knip": "6.
|
|
72
|
-
"meriyah": "7.1.
|
|
73
|
-
"oxfmt": "0.
|
|
74
|
-
"oxlint": "1.
|
|
75
|
-
"
|
|
75
|
+
"knip": "6.29.0",
|
|
76
|
+
"meriyah": "7.1.2",
|
|
77
|
+
"oxfmt": "0.60.0",
|
|
78
|
+
"oxlint": "1.75.0",
|
|
79
|
+
"oxlint-tsgolint": "7.0.2001",
|
|
80
|
+
"posthog-node": "5.46.0",
|
|
81
|
+
"typescript": "7.0.2",
|
|
76
82
|
"zod": "4.4.3"
|
|
77
83
|
},
|
|
78
|
-
"peerDependencies": {
|
|
79
|
-
"typescript": "^5 || ^6.0.0"
|
|
80
|
-
},
|
|
81
84
|
"readme": "README.md"
|
|
82
85
|
}
|