@codyswann/lisa 1.42.0 → 1.42.1

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.
@@ -1,6 +1,8 @@
1
1
  /**
2
2
  * This file is managed by Lisa.
3
3
  * Do not edit directly — changes will be overwritten on the next `lisa` run.
4
+ *
5
+ * @jest-config-loader esbuild-register
4
6
  */
5
7
 
6
8
  /**
@@ -1,6 +1,8 @@
1
1
  /**
2
2
  * This file is managed by Lisa.
3
3
  * Do not edit directly — changes will be overwritten on the next `lisa` run.
4
+ *
5
+ * @jest-config-loader esbuild-register
4
6
  */
5
7
 
6
8
  /**
@@ -1,6 +1,8 @@
1
1
  /**
2
2
  * This file is managed by Lisa.
3
3
  * Do not edit directly — changes will be overwritten on the next `lisa` run.
4
+ *
5
+ * @jest-config-loader esbuild-register
4
6
  */
5
7
 
6
8
  /**
@@ -54,6 +54,9 @@
54
54
  "lodash",
55
55
  "reflect-metadata",
56
56
  "rxjs",
57
+ "ioredis",
58
+ "pg",
59
+ "typeorm",
57
60
  "typeorm-naming-strategies"
58
61
  ],
59
62
  "ignoreBinaries": ["expo", "playwright", "audit", "docker", "eval"],
package/package.json CHANGED
@@ -50,47 +50,48 @@
50
50
  "prepublishOnly": "$npm_execpath run build"
51
51
  },
52
52
  "devDependencies": {
53
+ "@ast-grep/cli": "^0.40.4",
53
54
  "@commitlint/cli": "^20.3.1",
54
55
  "@commitlint/config-conventional": "^20.3.1",
55
56
  "@eslint-community/eslint-plugin-eslint-comments": "^4.5.0",
56
57
  "@eslint/eslintrc": "^3.2.0",
57
58
  "@eslint/js": "^9.39.0",
59
+ "@jest/globals": "^30.0.0",
60
+ "@jest/test-sequencer": "^30.2.0",
61
+ "@types/fs-extra": "^11.0.0",
62
+ "@types/jest": "^30.0.0",
63
+ "@types/lodash.merge": "^4.6.0",
64
+ "@types/node": "^22.0.0",
65
+ "esbuild-register": "^3.6.0",
58
66
  "eslint": "^9.39.0",
59
67
  "eslint-config-prettier": "^10.0.0",
60
68
  "eslint-import-resolver-typescript": "^4.4.4",
61
69
  "eslint-plugin-code-organization": "file:./eslint-plugin-code-organization",
62
- "eslint-plugin-import": "^2.32.0",
63
70
  "eslint-plugin-functional": "^9.0.0",
64
- "jiti": "^2.4.0",
71
+ "eslint-plugin-import": "^2.32.0",
65
72
  "eslint-plugin-jsdoc": "^61.5.0",
66
73
  "eslint-plugin-prettier": "^5.5.0",
67
74
  "eslint-plugin-sonarjs": "^3.0.0",
68
75
  "husky": "^8.0.0",
76
+ "jest": "^30.0.0",
77
+ "jiti": "^2.4.0",
69
78
  "jscodeshift": "0.15.2",
79
+ "knip": "^5.0.0",
70
80
  "lint-staged": "^16.2.7",
71
81
  "prettier": "^3.3.3",
72
82
  "standard-version": "^9.5.0",
83
+ "ts-jest": "^29.4.6",
73
84
  "ts-morph": "^27.0.2",
74
- "typescript": "~5.7.0",
75
- "typescript-eslint": "^8.0.0",
76
- "@types/fs-extra": "^11.0.0",
77
- "@types/lodash.merge": "^4.6.0",
78
- "@types/node": "^22.0.0",
79
85
  "tsx": "^4.0.0",
80
- "knip": "^5.0.0",
81
- "@ast-grep/cli": "^0.40.4",
82
- "@jest/test-sequencer": "^30.2.0",
83
- "@types/jest": "^30.0.0",
84
- "jest": "^30.0.0",
85
- "ts-jest": "^29.4.6",
86
- "@jest/globals": "^30.0.0"
86
+ "typescript": "~5.7.0",
87
+ "typescript-eslint": "^8.0.0"
87
88
  },
88
89
  "resolutions": {
89
90
  "@isaacs/brace-expansion": "^5.0.1",
90
91
  "axios": ">=1.13.5"
91
92
  },
92
93
  "name": "@codyswann/lisa",
93
- "version": "1.42.0",
94
+ "version": "1.42.1",
94
95
  "description": "Claude Code governance framework that applies guardrails, guidance, and automated enforcement to projects",
95
96
  "main": "dist/index.js",
96
97
  "bin": {
@@ -281,10 +281,8 @@ export const getSharedRules = (thresholds: typeof defaultThresholds) => ({
281
281
  "jsdoc/require-param-description": "error",
282
282
  "jsdoc/require-returns-description": "error",
283
283
  "jsdoc/require-property-description": "error",
284
- "jsdoc/check-tag-names": [
285
- "error",
286
- { definedTags: ["remarks", "precondition", "entity", "security"] },
287
- ],
284
+ // prettier-ignore
285
+ "jsdoc/check-tag-names": ["error", { definedTags: ["remarks", "precondition", "entity", "security", "jest-config-loader", "jest-config-loader-options"] }],
288
286
  "jsdoc/no-types": "off",
289
287
  "jsdoc/require-param-type": "off",
290
288
  "jsdoc/require-returns-type": "off",
@@ -1,6 +1,8 @@
1
1
  /**
2
2
  * This file is managed by Lisa.
3
3
  * Do not edit directly — changes will be overwritten on the next `lisa` run.
4
+ *
5
+ * @jest-config-loader esbuild-register
4
6
  */
5
7
 
6
8
  /**
@@ -52,7 +52,8 @@
52
52
  "@jest/globals": "^30.0.0",
53
53
  "@types/jest": "^30.0.0",
54
54
  "jest": "^30.0.0",
55
- "ts-jest": "^29.4.6"
55
+ "ts-jest": "^29.4.6",
56
+ "esbuild-register": "^3.6.0"
56
57
  },
57
58
  "resolutions": {
58
59
  "@isaacs/brace-expansion": "^5.0.1",