@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.
- package/cdk/copy-overwrite/jest.config.ts +2 -0
- package/expo/copy-overwrite/jest.config.ts +2 -0
- package/nestjs/copy-overwrite/jest.config.ts +2 -0
- package/nestjs/copy-overwrite/knip.json +3 -0
- package/package.json +16 -15
- package/typescript/copy-overwrite/eslint.base.ts +2 -4
- package/typescript/copy-overwrite/jest.config.ts +2 -0
- package/typescript/package-lisa/package.lisa.json +2 -1
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
|
-
"
|
|
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
|
-
"
|
|
81
|
-
"
|
|
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.
|
|
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
|
-
|
|
285
|
-
|
|
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",
|