archgate 0.51.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/package.json +9 -6
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,12 +48,15 @@
|
|
|
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
|
},
|
|
@@ -72,11 +76,10 @@
|
|
|
72
76
|
"meriyah": "7.1.2",
|
|
73
77
|
"oxfmt": "0.60.0",
|
|
74
78
|
"oxlint": "1.75.0",
|
|
79
|
+
"oxlint-tsgolint": "7.0.2001",
|
|
75
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
|
}
|