@codyswann/lisa 1.63.0 → 1.64.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 +6 -6
- package/plugins/lisa/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-cdk/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-expo/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-nestjs/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-rails/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-typescript/.claude-plugin/plugin.json +1 -1
package/package.json
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
"scripts": {
|
|
3
3
|
"build": "tsc && bun run build:plugins",
|
|
4
4
|
"pretest": "[ -d dist/configs ] || bun run build",
|
|
5
|
-
"test": "
|
|
6
|
-
"test:unit": "
|
|
7
|
-
"test:integration": "
|
|
8
|
-
"test:cov": "
|
|
5
|
+
"test": "vitest run",
|
|
6
|
+
"test:unit": "vitest run --exclude='**/integration/**'",
|
|
7
|
+
"test:integration": "vitest run tests/integration",
|
|
8
|
+
"test:cov": "vitest run --coverage",
|
|
9
9
|
"lint": "eslint . --quiet",
|
|
10
10
|
"lint:fix": "eslint . --fix",
|
|
11
11
|
"lint:slow": "eslint . --config eslint.slow.config.ts --quiet",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"prepare": "node -e \"if (process.env.INIT_CWD && process.env.INIT_CWD.includes('.serverless')) { process.exit(0); }\" && husky install || true",
|
|
20
20
|
"start": "node dist/index.js",
|
|
21
21
|
"dev": "tsx src/index.ts",
|
|
22
|
-
"test:watch": "
|
|
22
|
+
"test:watch": "vitest",
|
|
23
23
|
"update-node-version": "tsx scripts/update-node-version.ts",
|
|
24
24
|
"cleanup:amplify-branches": "bash scripts/cleanup-amplify-branches.sh",
|
|
25
25
|
"cleanup:github-branches": "bash scripts/cleanup-github-branches.sh",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"axios": ">=1.13.5"
|
|
73
73
|
},
|
|
74
74
|
"name": "@codyswann/lisa",
|
|
75
|
-
"version": "1.
|
|
75
|
+
"version": "1.64.0",
|
|
76
76
|
"description": "Claude Code governance framework that applies guardrails, guidance, and automated enforcement to projects",
|
|
77
77
|
"main": "dist/index.js",
|
|
78
78
|
"exports": {
|