aact 2.1.4 → 3.0.0-beta.2

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aact",
3
- "version": "2.1.4",
3
+ "version": "3.0.0-beta.2",
4
4
  "type": "module",
5
5
  "description": "Architecture analysis and compliance tool",
6
6
  "keywords": [
@@ -37,7 +37,7 @@
37
37
  "type": "git",
38
38
  "url": "git+https://github.com/Byndyusoft/aact.git"
39
39
  },
40
- "packageManager": "pnpm@9.15.4",
40
+ "packageManager": "pnpm@11.1.1",
41
41
  "sideEffects": false,
42
42
  "files": [
43
43
  "dist"
@@ -47,6 +47,16 @@
47
47
  "scripts": {
48
48
  "build": "unbuild",
49
49
  "test": "vitest run",
50
+ "test:unit": "vitest run --project unit",
51
+ "test:integration": "vitest run --project integration",
52
+ "test:e2e": "vitest run --project e2e",
53
+ "test:coverage": "vitest run --coverage",
54
+ "test:mutation": "stryker run",
55
+ "typecheck": "tsc --noEmit",
56
+ "changelog": "changelogen",
57
+ "release": "changelogen --release --push",
58
+ "knip": "knip",
59
+ "publint": "publint",
50
60
  "lint": "npm run lint:eslint && npm run lint:prettier",
51
61
  "lint:eslint": "eslint .",
52
62
  "lint:prettier": "prettier --ignore-path ./.gitignore --check \"./**/*.{ts,js,json,yaml,yml,md}\"",
@@ -63,34 +73,54 @@
63
73
  "devDependencies": {
64
74
  "@commitlint/cli": "20.4.1",
65
75
  "@commitlint/config-conventional": "20.4.1",
76
+ "@eslint-community/eslint-plugin-eslint-comments": "^4.7.1",
66
77
  "@eslint/js": "^9",
67
- "@types/node": "^20.19.32",
78
+ "@fast-check/vitest": "^0.4.1",
79
+ "@stryker-mutator/core": "^9.6.1",
80
+ "@stryker-mutator/vitest-runner": "^9.6.1",
81
+ "@types/node": "^22.10.0",
82
+ "@vitest/coverage-v8": "^4.1.6",
83
+ "@vitest/eslint-plugin": "^1.6.17",
84
+ "changelogen": "^0.6.2",
68
85
  "eslint": "^9",
86
+ "eslint-import-resolver-typescript": "^4.4.4",
87
+ "eslint-plugin-boundaries": "^6.0.2",
88
+ "eslint-plugin-citty": "^1.0.2",
89
+ "eslint-plugin-import-x": "^4.16.2",
69
90
  "eslint-plugin-n": "^17",
70
91
  "eslint-plugin-simple-import-sort": "^12",
71
92
  "eslint-plugin-sonarjs": "^3",
72
93
  "eslint-plugin-unicorn": "^62.0.0",
73
- "globals": "^17.3.0",
94
+ "execa": "^9.6.1",
95
+ "globals": "^17.6.0",
74
96
  "husky": "9.1.7",
97
+ "knip": "^6.12.2",
75
98
  "lint-staged": "16.2.7",
76
- "prettier": "3.8.1",
77
- "prettier-plugin-packagejson": "3.0.0",
99
+ "prettier": "3.8.3",
100
+ "prettier-plugin-packagejson": "3.0.2",
101
+ "publint": "^0.3.20",
78
102
  "typescript": "5.9.3",
79
- "typescript-eslint": "^8",
103
+ "typescript-eslint": "^8.59.3",
80
104
  "unbuild": "^3.0.0",
81
- "vitest": "^4.0.18"
105
+ "vitest": "^4.1.6"
82
106
  },
83
107
  "engines": {
84
- "node": ">=20"
108
+ "node": ">=22"
85
109
  },
86
110
  "dependencies": {
87
111
  "c12": "4.0.0-beta.2",
88
- "citty": "^0.2.0",
112
+ "citty": "^0.2.2",
89
113
  "consola": "^3.4.2",
90
- "jiti": "^2.6.1",
91
- "picocolors": "^1.1.1",
114
+ "jiti": "^2.7.0",
115
+ "pathe": "^2.0.3",
92
116
  "plantuml-parser": "0.4.0",
93
- "valibot": "^1.2.0",
94
- "yaml": "2.8.2"
117
+ "valibot": "^1.4.0",
118
+ "yaml": "2.9.0"
119
+ },
120
+ "pnpm": {
121
+ "onlyBuiltDependencies": [
122
+ "esbuild",
123
+ "unrs-resolver"
124
+ ]
95
125
  }
96
126
  }