-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "archgate",
"version": "0.45.3",
"description": "Enforce Architecture Decision Records as executable rules — for both humans and AI agents",
"keywords": [
"adr",
"archgate",
"architecture-decision-records",
"cli",
"governance",
"linter"
],
"homepage": "https://cli.archgate.dev",
"bugs": {
"url": "https://github.com/archgate/cli/issues"
},
"license": "Apache-2.0",
"author": {
"name": "Archgate",
"url": "https://archgate.dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/archgate/cli.git"
},
"bin": {
"archgate": "shims/npm/archgate.cjs"
},
"files": [
"shims/npm/archgate.cjs"
],
"os": [
"darwin",
"linux",
"win32"
],
"type": "module",
"scripts": {
"build:check": "bun build src/cli.ts --compile --bytecode --outfile dist/.build-check && rm -f dist/.build-check dist/.build-check.exe",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"check": "bun run src/cli.ts check",
"cli": "bun run src/cli.ts",
"commit": "czg",
"docs:build": "cd docs && bunx --bun astro build",
"docs:dev": "cd docs && bunx --bun astro dev",
"docs:preview": "cd docs && bunx --bun astro preview",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"format:file": "oxfmt --write",
"knip": "knip",
"lint": "oxlint --deny-warnings .",
"test": "bun test --timeout 60000",
"test:coverage": "bun test --timeout 60000 --coverage",
"test:watch": "bun test --watch --timeout 60000",
"typecheck": "tsc --build",
"validate": "bun run lint && bun run typecheck && bun run format:check && bun run test && bun run check && bun run knip && bun run build:check",
"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"
},
"devDependencies": {
"@commander-js/extra-typings": "14.0.0",
"@commitlint/cli": "21.0.1",
"@commitlint/config-conventional": "21.0.1",
"@sentry/node-core": "10.54.0",
"@simple-release/npm": "2.3.0",
"@types/bun": "1.3.14",
"conventional-changelog": "7.2.0",
"conventional-changelog-angular": "8.3.1",
"czg": "1.13.1",
"fast-check": "4.8.0",
"inquirer": "14.0.0",
"knip": "6.14.2",
"meriyah": "7.1.0",
"oxfmt": "0.52.0",
"oxlint": "1.67.0",
"posthog-node": "5.35.5",
"zod": "4.4.3"
},
"peerDependencies": {
"typescript": "^5 || ^6.0.0"
},
"readme": "README.md"
}